/* ========================================
   PROJECTS PAGE - INFINITRA STUDIOS
   Modern, Visual, Portfolio-focused
   ======================================== */

/* ========================================
   HERO PROJECTS
   ======================================== */

.hero-projects {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    background: linear-gradient(180deg, #000000 0%, #0a0a0f 100%);
    overflow: hidden;
}

/* Background image avec overlay */
.hero-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/lighthouse-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.55;
    z-index: 0;
}

/* Overlay sombre pour garder le texte lisible */
.hero-projects::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(10, 10, 15, 0.65) 50%,
        rgba(11, 11, 18, 0.8) 100%);
    z-index: 1;
}

.hero-content-projects {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.projects-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title-projects {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtitle-projects {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ========================================
   FEATURED PROJECT - isCinema
   ======================================== */

.section-featured {
    background: var(--color-background);
    position: relative;
    padding: var(--spacing-xl) 0;
}

.featured-badge {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-badge span {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.featured-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Cinema Visualization */
.featured-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.visual-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cinema-viz {
    width: 90%;
    height: 90%;
    position: relative;
    perspective: 1000px;
}

.viz-screen {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    animation: screen-pulse 4s ease-in-out infinite;
}

@keyframes screen-pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.viz-seats {
    position: absolute;
    bottom: 10%;
    left: 15%;
    right: 15%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seat-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.seat {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px 8px 4px 4px;
    position: relative;
    animation: seat-fill 3s ease-in-out infinite;
}

.seat::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 8px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px 4px 0 0;
}

.seat:nth-child(1) { animation-delay: 0s; }
.seat:nth-child(2) { animation-delay: 0.2s; }
.seat:nth-child(3) { animation-delay: 0.4s; }
.seat:nth-child(4) { animation-delay: 0.6s; }
.seat:nth-child(5) { animation-delay: 0.8s; }

@keyframes seat-fill {
    0%, 100% { background: rgba(212, 175, 55, 0.2); border-color: rgba(212, 175, 55, 0.4); }
    50% { background: rgba(212, 175, 55, 0.5); border-color: rgba(212, 175, 55, 0.8); }
}

.viz-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: glow-pulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Featured Content */
.featured-content {
    padding: 2rem 0;
}

.featured-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.featured-tagline {
    font-size: 1.25rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.featured-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.featured-tech,
.featured-features {
    margin-bottom: 2.5rem;
}

.featured-tech h3,
.featured-features h3 {
    font-size: 1rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    padding: 0.6rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-features ul {
    list-style: none;
    padding: 0;
}

.featured-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--color-text-secondary);
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.featured-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Gallery Section */
.featured-gallery {
    margin-top: 3rem;
}

.featured-gallery h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-caption {
    display: block;
    padding: 1.25rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-align: center;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(10px);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.featured-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* isCinema Button with Background Image */
.btn-iscinema {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.btn-iscinema::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/iscinema-button-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.btn-iscinema:hover::before {
    opacity: 0.55;
    transform: scale(1.05);
}

.btn-iscinema::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(212, 175, 55, 0) 100%);
    z-index: 1;
}

.btn-iscinema span,
.btn-iscinema {
    position: relative;
    z-index: 2;
}

.btn-iscinema:hover {
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-style: italic;
}

/* ========================================
   PORTFOLIO GRID
   ======================================== */

.section-portfolio {
    background: var(--color-surface);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.portfolio-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(10, 10, 15, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.15);
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.project-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1.3rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

/* Abstract Visualizations */
.abstract-viz {
    width: 60%;
    height: 60%;
    position: relative;
}

/* ========================================
   IMMERSIVE AUDIO CORE (IAC) - 3D Audio Sphere
   ======================================== */

.iac-viz {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    height: 70%;
}

.audio-sphere {
    width: 180px;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Core centrale avec gradient radial */
.sphere-core {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--color-accent), rgba(212, 175, 55, 0.3));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.8),
        0 0 60px rgba(212, 175, 55, 0.4),
        inset 0 0 20px rgba(212, 175, 55, 0.6);
    animation: core-breathe 3s ease-in-out infinite;
    z-index: 10;
}

/* Ondes audio concentriques */
.audio-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    animation: wave-expand 4s ease-out infinite;
}

.wave-1 {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.wave-2 {
    width: 90px;
    height: 90px;
    animation-delay: 1s;
}

.wave-3 {
    width: 120px;
    height: 120px;
    animation-delay: 2s;
}

.wave-4 {
    width: 150px;
    height: 150px;
    animation-delay: 3s;
}

/* Particules spatiales orbitant autour */
.spatial-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    animation: particle-orbit 8s linear infinite;
}

.particle:nth-child(1) {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 25%;
    right: 0;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 0;
    left: 50%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 25%;
    left: 0;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 75%;
    right: 15%;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    top: 75%;
    left: 15%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    top: 50%;
    right: 10%;
    animation-delay: 6s;
}

.particle:nth-child(8) {
    top: 50%;
    left: 10%;
    animation-delay: 7s;
}

/* Animations */
@keyframes core-breathe {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 30px rgba(212, 175, 55, 0.8),
            0 0 60px rgba(212, 175, 55, 0.4),
            inset 0 0 20px rgba(212, 175, 55, 0.6);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 
            0 0 50px rgba(212, 175, 55, 1),
            0 0 90px rgba(212, 175, 55, 0.6),
            inset 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

@keyframes wave-expand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
        border-width: 3px;
    }
    20% {
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes particle-orbit {
    0% {
        transform: rotate(0deg) translateX(70px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(70px) rotate(-360deg);
        opacity: 0.4;
    }
}

/* Acronyme IAC styling */
.tech-acronym {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(212, 175, 55, 0.7);
    letter-spacing: 0.05em;
}

/* StreamVault Lock */
.vault-viz {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vault-lock {
    width: 140px;
    height: 140px;
    position: relative;
}

.lock-circle {
    width: 90px;
    height: 110px;
    border: 5px solid var(--color-accent);
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: lock-pulse 3s ease-in-out infinite;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.2);
}

.lock-shackle {
    width: 60px;
    height: 60px;
    border: 5px solid var(--color-accent);
    border-bottom: none;
    border-radius: 50% 50% 0 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: lock-pulse 3s ease-in-out infinite;
}

@keyframes lock-pulse {
    0%, 100% { 
        opacity: 0.7; 
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    }
    50% { 
        opacity: 1; 
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
    }
}

/* CineSync Nodes */
.sync-viz {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sync-nodes {
    width: 150px;
    height: 150px;
    position: relative;
}

.node {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.1));
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    position: absolute;
    animation: node-pulse 2s ease-in-out infinite;
}

.node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.node:nth-child(2) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.4s; }
.node:nth-child(3) { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 0.8s; }
.node.center-node { 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 50px; 
    height: 50px;
    animation-delay: 0.2s;
    z-index: 2;
    border-width: 4px;
}

@keyframes node-pulse {
    0%, 100% { 
        opacity: 0.7;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); 
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 35px rgba(212, 175, 55, 0.9); 
    }
}

/* Atmos Audio Waveform */
.audio-viz {
    display: flex;
    align-items: center;
    justify-content: center;
}

.waveform {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 120px;
}

.wave-bar {
    width: 12px;
    background: linear-gradient(to top, var(--color-accent), rgba(212, 175, 55, 0.5));
    border-radius: 6px 6px 2px 2px;
    animation: wave-bounce 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.wave-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 90%; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 75%; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 85%; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 65%; animation-delay: 0.4s; }

@keyframes wave-bounce {
    0%, 100% { 
        transform: scaleY(1); 
        opacity: 0.7;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% { 
        transform: scaleY(1.4); 
        opacity: 1;
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
    }
}

/* Nexus Logo */
.nexus-viz {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexus-logo {
    width: 140px;
    height: 140px;
    position: relative;
}

.logo-ring {
    width: 100%;
    height: 100%;
    border: 4px solid var(--color-accent);
    border-radius: 50%;
    position: absolute;
    animation: ring-rotate 8s linear infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.logo-core {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--color-accent), rgba(212, 175, 55, 0.6));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: core-pulse 2s ease-in-out infinite;
}

@keyframes ring-rotate {
    0% { 
        transform: rotate(0deg); 
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% { 
        transform: rotate(360deg); 
        opacity: 0.8;
    }
}

@keyframes core-pulse {
    0%, 100% { 
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.6); 
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 50px rgba(212, 175, 55, 1); 
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Portfolio Content */
.portfolio-content {
    padding: 3rem;
}

.portfolio-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.portfolio-tagline {
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.portfolio-description {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.tech-pill {
    padding: 0.6rem 1.2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-pill:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.portfolio-status {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-dev {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    color: #3b82f6;
}

.status-partner {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.coming-soon {
    position: relative;
}

.coming-soon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(212, 175, 55, 0.05));
    pointer-events: none;
    z-index: 1;
}

.coming-soon .portfolio-content {
    position: relative;
    z-index: 2;
}

.coming-soon .portfolio-visual {
    filter: grayscale(0.2);
    opacity: 0.9;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .featured-project {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-projects {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-title-projects {
        font-size: 2.5rem;
    }

    .hero-subtitle-projects {
        font-size: 1rem;
    }

    .featured-title {
        font-size: 2.5rem;
    }

    .featured-tagline {
        font-size: 1rem;
    }

    .featured-description {
        font-size: 1rem;
    }

    .tech-tags {
        flex-direction: column;
    }

    .tech-tag {
        text-align: center;
    }

    .portfolio-content {
        padding: 2rem;
    }

    .portfolio-title {
        font-size: 2rem;
    }

    .portfolio-tagline {
        font-size: 0.95rem;
    }

    .portfolio-description {
        font-size: 1rem;
    }

    .tech-pill {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .featured-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-card {
        margin: 0;
    }

    .portfolio-content {
        padding: 2rem 1.5rem;
    }

    .portfolio-title {
        font-size: 1.75rem;
    }

    .cinema-viz {
        width: 100%;
        height: 100%;
    }

    .seat {
        width: 30px;
        height: 30px;
    }

    .seat::before {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .hero-projects {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hero-title-projects {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle-projects {
        font-size: 0.95rem;
    }

    .featured-title {
        font-size: 2rem;
    }

    .portfolio-title {
        font-size: 1.5rem;
    }

    .seat {
        width: 24px;
        height: 24px;
    }

    .seat::before {
        width: 22px;
        height: 6px;
    }

    .seat-row {
        gap: 0.5rem;
    }
}
