/* ============================================
   Variables
   ============================================ */
:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-color: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    
    --font-main: 'Montserrat', sans-serif;
    
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--primary-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 6%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* ============================================
   Home Section
   ============================================ */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 6% 4rem;
    background: var(--primary-black);
}

.home-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Hero media (local showreel video) */
.hero-media {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 4rem;
    aspect-ratio: 16/9;
    background: var(--secondary-black);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: contrast(1.05) saturate(1.05);
}



.title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 4rem;
    aspect-ratio: 16/9;
    background: var(--secondary-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4rem;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================
   Biography Section
   ============================================ */
.biography {
    min-height: 100vh;
    padding: 8rem 6%;
    background: var(--secondary-black);
}

.section-container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
    text-align: center;
}

.bio-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.bio-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.bio-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.bio-block a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--text-primary);
    transition: var(--transition);
}

.bio-block a:hover {
    opacity: 0.7;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    min-height: 100vh;
    padding: 8rem 6%;
    background: var(--primary-black);
    display: flex;
    align-items: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

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

.contact-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contact-item a {
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 3rem 6%;
    background: var(--secondary-black);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .nav {
        padding: 1.5rem 5%;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .home {
        padding: 6rem 5% 3rem;
    }
    
    .title {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 3rem;
    }
    
    .biography,
    .contact {
        padding: 6rem 5%;
    }
    
    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 3rem;
    }
    
    .bio-block h3 {
        font-size: 1.2rem;
    }
    
    .bio-block p {
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 0.85rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.7rem;
    }
}

/* ============================================
   Showreel gate (required for sound-on start)
   Autoplay with sound is blocked by browsers.
   ============================================ */
.video-gate {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.video-gate:hover {
    background: rgba(10, 10, 10, 0.2);
}

.video-gate:focus {
    outline: 2px solid rgba(255,255,255,0.35);
    outline-offset: -2px;
}

.video-gate-inner {
    padding: 1.2rem 1.6rem;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
}

.video-gate-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.video-gate-sub {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
