:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --gold-light: #E8C547;
    --charcoal: #1a1a1a;
    --off-white: #f5f5f5;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-dim: rgba(255, 255, 255, 0.7);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    background: #000;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(26, 26, 26, 0.85) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(0,0,0,0.95);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

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

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Sections */
section {
    min-height: 100vh;
    padding: 8rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Hero Section */
#home {
    text-align: center;
    align-items: center;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 7rem);
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    color: var(--text-dim);
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.social-links a {
    color: var(--text-dim);
    font-size: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        transform: translateY(30px);
    }
}

/* Section Headers */
.section-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    color: var(--gold);
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold);
}

/* Reels Section */
#reels {
    padding-top: 8rem;
}

.reels-container {
    display: grid;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.reel-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.reel-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.reel-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--gold);
    text-transform: uppercase;
}

.audio-grid {
    display: grid;
    gap: 2rem;
}

.audio-item {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.audio-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border-left-color: var(--gold);
}

.audio-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.audio-item audio {
    width: 100%;
    margin-top: 1rem;
    outline: none;
}

/* Plyr Audio Player Styling */
.plyr {
    --plyr-color-main: var(--gold);
    --plyr-audio-control-color: var(--text-dim);
    --plyr-audio-control-color-hover: var(--charcoal);
    --plyr-audio-control-background-hover: var(--gold);
    --plyr-audio-controls-background: rgba(0, 0, 0, 0.8);
    --plyr-range-fill-background: var(--gold);
    --plyr-range-thumb-background: var(--gold);
    --plyr-range-track-background: rgba(255, 255, 255, 0.1);
}

.plyr--audio .plyr__controls {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 2px;
    padding: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Biography Section */
#bio {
    align-items: center;
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

.bio-content p {
    margin-bottom: 1.5rem;
}

/* Contact Section */
#contact {
    align-items: center;
}

.contact-content {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin: 0.5rem 0;
    letter-spacing: 1px;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    padding: 1rem 3rem;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
    padding: 2rem 10%;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--gold-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    section {
        padding: 6rem 5%;
    }

    .reels-container {
        gap: 2rem;
    }

    .reel-section {
        padding: 2rem;
    }

    .contact-content {
        padding: 2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    z-index: 10000;
    transition: width 0.1s ease;
}
