/* ============================================
   DIRECTORS PAGE - THE TAMTAM
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #C65BCF;
    --orange: #F5A623;
    --white: #FFFFFF;
    --bg: #0a0a0a;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-decoration: none;
}

.header-logo img {
    height: 36px;
    width: auto;
}

.header-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.6;
}

/* ============================================
   VIDEO BACKGROUND
   ============================================ */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.6;
}

/* Dark overlay on video */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* ============================================
   DIRECTORS CONTENT
   ============================================ */
.directors-container {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 80px;
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px;
    width: 100%;
    max-width: 1400px;
}

.directors-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.director-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    padding-bottom: 8px;
}

/* Hover effect - underline */
.director-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple);
    transition: width 0.4s ease;
}

.director-name:hover {
    color: var(--purple);
    transform: translateX(10px);
}

.director-name:hover::after {
    width: 100%;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .directors-grid {
        gap: 80px;
    }
    
    .director-name {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .directors-container {
        padding: 0 40px;
    }
    
    .page-title {
        font-size: 36px;
        margin-bottom: 60px;
    }
    
    .directors-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .director-name {
        font-size: 22px;
    }
}
