/* work-detail.css */
:root {
    --primary-color: #fdad01;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-color: #ffffff;
    --text-muted: #b0b0b0;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
}

.work-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.work-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.work-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.work-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.work-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.meta-item {
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: bold;
}

.project-details {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-section {
    margin-bottom: 60px;
}

.detail-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.detail-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.screenshot-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tech-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.live-link-container {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
}