/* ===== SCENE CONTAINER SYSTEM ===== */
/* Reusable scene layout for all Janat Initiative pages */

.scene {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    padding: var(--spacing-lg);
    overflow: hidden;
}

.scene-content {
    max-width: 900px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.scene-number {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    font-size: 1.5rem;
    color: var(--subtle-gray);
    font-weight: 300;
    opacity: 0.5;
    z-index: 10;
}

/* ===== SCENE BACKGROUNDS ===== */
.scene-bg-radial-blue {
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.scene-bg-radial-purple {
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
}

.scene-bg-radial-gold {
    background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
}

.scene-bg-gradient {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(124, 58, 237, 0.15) 50%, 
        rgba(251, 191, 36, 0.1) 100%
    );
}

/* ===== TYPOGRAPHY IN SCENES ===== */
.scene h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 200;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.scene h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    line-height: 1.3;
}

.scene p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    margin-bottom: 15px;
}

.scene p.aside {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    color: rgba(156, 163, 175, 0.7);
    margin-top: 20px;
}

.scene .revelation {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    margin-top: 40px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--subtle-gray);
    animation: bounce 2s infinite;
    opacity: 0.7;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* ===== CANVAS CONTAINERS ===== */
.scene-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.scene-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .scene {
        padding: var(--spacing-md);
    }
    
    .scene-number {
        top: var(--spacing-md);
        left: var(--spacing-md);
        font-size: 1.2rem;
    }
    
    .scroll-indicator {
        bottom: var(--spacing-md);
        font-size: 1.5rem;
    }
}