:root {
    --primary: #1a1a1a;
    --accent: #d4af37;
    --text: #ffffff;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

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

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

#player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    #player { height: 56.25vw; }
}
@media (max-aspect-ratio: 16/9) {
    #player { width: 177.78vh; }
}

.content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}

/* Mini Logo in Top Left */
.top-nav {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
}

.logo-link {
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.logo-small {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Mute Button Top Right */
.mute-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.mute-btn:hover {
    opacity: 1;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-20px);}
    60% {transform: translateX(-50%) translateY(-10px);}
}

/* Full Page Sections */
.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    position: relative;
    padding: 40px 20px;
    background: transparent;
}

.section-content {
    background: transparent;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    text-shadow: 0 2px 10px rgba(0,0,0,1);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
    text-shadow: 0 4px 15px rgba(0,0,0,1);
}

.lead {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #fff;
}

p {
    font-size: 1.1rem;
    max-width: 700px;
}

.history-image {
    width: 100%;
    height: 350px;
    margin: 25px 0;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.sepia {
    filter: sepia(100%) contrast(1.1) brightness(0.9);
}

/* Slim Play Bar */
.play-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.05);
    z-index: 100;
    cursor: pointer;
}

.progress-filled {
    height: 100%;
    background: var(--accent);
    width: 0%;
}

@media (max-width: 768px) {
    .section-title { font-size: 2.8rem; }
    .history-image { height: 250px; }
}
