/* ========================================
   PROJECTS PROFESSIONAL CLASSIC LAYOUT
   ======================================== */

.projects-fullscreen {
    width: 100%;
}

.project-showcase {
    min-height: auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-showcase[data-theme="classic"] .showcase-background {
    background: #0b0b12;
}

.showcase-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.showcase-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.showcase-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* ========================================
   MODERN ANIMATIONS - CLASSIC COLORS
   ======================================== */

.animation-container {
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* IAC Audio Animation */
.iac-animation {
    perspective: 1000px;
}

.audio-core {
    position: relative;
    width: 300px;
    height: 300px;
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #d4af37, #b8941f);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: core-pulse 3s ease-in-out infinite;
}

.audio-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: ring-expand 4s ease-out infinite;
}

.audio-ring.ring-1 { width: 120px; height: 120px; animation-delay: 0s; }
.audio-ring.ring-2 { width: 180px; height: 180px; animation-delay: 1.3s; }
.audio-ring.ring-3 { width: 240px; height: 240px; animation-delay: 2.6s; }

.audio-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.audio-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    animation: particle-float 8s ease-in-out infinite;
}

.audio-particles span:nth-child(1) { top: 10%; left: 50%; animation-delay: 0s; }
.audio-particles span:nth-child(2) { top: 30%; right: 10%; animation-delay: 1.3s; }
.audio-particles span:nth-child(3) { bottom: 10%; left: 50%; animation-delay: 2.6s; }
.audio-particles span:nth-child(4) { top: 30%; left: 10%; animation-delay: 4s; }
.audio-particles span:nth-child(5) { top: 70%; right: 20%; animation-delay: 5.3s; }
.audio-particles span:nth-child(6) { top: 70%; left: 20%; animation-delay: 6.6s; }

/* Cinema Curtain Animation */
.cinema-animation {
    background: linear-gradient(to bottom, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 8px;
    overflow: hidden;
}

.cinema-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.cinema-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.screen-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1), transparent 70%);
    animation: screen-flicker 4s ease-in-out infinite;
}

.film-grain {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    animation: grain-move 0.5s steps(1) infinite;
}

.curtain-left, .curtain-right {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right, #8b0000, #a52a2a);
    box-shadow: inset -10px 0 20px rgba(0,0,0,0.5);
    animation: curtain-sway 6s ease-in-out infinite;
}

.curtain-left {
    left: 0;
    border-right: 2px solid rgba(212, 175, 55, 0.3);
}

.curtain-right {
    right: 0;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    animation-delay: 3s;
}

.spotlight {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: spotlight-move 8s ease-in-out infinite;
}

.spotlight-1 { top: 10%; left: 20%; }
.spotlight-2 { top: 20%; right: 20%; animation-delay: 4s; }

/* Film Reel Animation */
.reel-animation {
    background: radial-gradient(circle at center, #1a1a1a, #0a0a0a);
    border-radius: 8px;
}

.film-reel {
    position: relative;
    width: 280px;
    height: 280px;
    border: 3px solid #d4af37;
    border-radius: 50%;
    background: radial-gradient(circle, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), inset 0 0 40px rgba(0,0,0,0.8);
    animation: reel-rotate 10s linear infinite;
}

.reel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), inset 0 0 15px rgba(0,0,0,0.6);
}

.reel-hole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #0a0a0a;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.9);
}

.reel-spokes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.reel-spokes span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 50%;
    background: linear-gradient(to bottom, #d4af37, transparent);
    transform-origin: center top;
}

.reel-spokes span:nth-child(1) { transform: translate(-50%, -100%) rotate(0deg); }
.reel-spokes span:nth-child(2) { transform: translate(-50%, -100%) rotate(60deg); }
.reel-spokes span:nth-child(3) { transform: translate(-50%, -100%) rotate(120deg); }
.reel-spokes span:nth-child(4) { transform: translate(-50%, -100%) rotate(180deg); }
.reel-spokes span:nth-child(5) { transform: translate(-50%, -100%) rotate(240deg); }
.reel-spokes span:nth-child(6) { transform: translate(-50%, -100%) rotate(300deg); }

.film-strip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.film-frame {
    width: 30px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    border-radius: 2px;
    animation: frame-blink 1.5s ease-in-out infinite;
}

.film-frame:nth-child(2) { animation-delay: 0.5s; }
.film-frame:nth-child(3) { animation-delay: 1s; }

/* ========================================
   TEXT CONTENT
   ======================================== */

.showcase-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    font-weight: 700;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}

.tech-acronym-large {
    font-size: 2.2rem;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.5);
    letter-spacing: 0.05em;
}

.showcase-tagline {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.showcase-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.showcase-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-pill-large {
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 600;
}

.showcase-status {
    margin-top: 1rem;
}

.status-badge-large {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-production {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.status-partner {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.4);
    color: #0ea5e9;
}

/* ========================================
   ANIMATION KEYFRAMES
   ======================================== */

@keyframes core-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.8), 0 0 100px rgba(212, 175, 55, 0.5), inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

@keyframes ring-expand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    20% { opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(20px, -20px); opacity: 1; }
}

@keyframes screen-flicker {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

@keyframes grain-move {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2%, -2%); }
    20% { transform: translate(2%, 1%); }
    30% { transform: translate(-1%, 2%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-2%, 1%); }
    60% { transform: translate(2%, -2%); }
    70% { transform: translate(-1%, -1%); }
    80% { transform: translate(1%, 2%); }
    90% { transform: translate(-2%, -1%); }
}

@keyframes curtain-sway {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

@keyframes spotlight-move {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

@keyframes reel-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes frame-blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    .showcase-title { font-size: 2.5rem; }
    .tech-acronym-large { font-size: 2rem; }
    .showcase-visual { min-height: 300px; }
}

@media (max-width: 768px) {
    .project-showcase { padding: var(--spacing-lg) 0; }
    .showcase-title { font-size: 2rem; }
    .tech-acronym-large { font-size: 1.6rem; }
    .showcase-tagline { font-size: 1rem; }
    .showcase-description { font-size: 0.95rem; }
    .tech-pill-large { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .status-badge-large { padding: 0.6rem 1rem; font-size: 0.85rem; }
    .showcase-visual { min-height: 250px; }
    .animation-container { max-width: 350px; height: 300px; }
    .audio-core { width: 250px; height: 250px; }
    .film-reel { width: 220px; height: 220px; }
}

@media (max-width: 480px) {
    .showcase-title { font-size: 1.75rem; }
    .tech-acronym-large { font-size: 1.4rem; }
    .showcase-tagline { font-size: 0.9rem; }
    .showcase-description { font-size: 0.9rem; }
    .showcase-tech { gap: 0.6rem; justify-content: center; }
    .tech-pill-large { padding: 0.4rem 0.8rem; font-size: 0.75rem; }
    .showcase-visual { min-height: 200px; }
    .animation-container { max-width: 300px; height: 250px; }
    .audio-core { width: 200px; height: 200px; }
    .film-reel { width: 180px; height: 180px; }
}
