:root {
    --font-main: 'Roboto Mono', monospace;
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-accent: #888888;
    --border-color: #ffffff;
    --spacing-unit: 20px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
}

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

/* Side Navigation Dots */
.side-nav {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--border-color);
}

/* Deck Sections */
.deck-section {
    height: 100vh;
    width: 100vw;
    padding: 40px 60px 100px 80px; /* Extra padding for side nav and bottom bar */
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}

.section-border {
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Specific */
header .header-content {
    z-index: 1;
    text-align: center;
}

h1 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 12px;
    margin-bottom: 10px;
}

h2 {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 5px;
    color: var(--color-text);
    margin-bottom: 40px;
}

.main-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    filter: brightness(0) invert(1);
}

.main-logos img {
    height: 40px;
}

/* Breather Section (Full Width Image/Video) */
.breather .section-border {
    padding: 0;
    border: 1px solid var(--border-color);
}

.full-width-img, .full-width-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Two Column Text Layout */
.text-layout-two-col {
    width: 100%;
    height: 100%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.text-header {
    margin-bottom: 30px;
}

.text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.text-columns .col p {
    font-size: 0.85rem;
    margin-bottom: 18px;
    font-weight: 300;
    line-height: 1.6;
}

/* Two Column Layout (Media Left, Text Right) */
.two-column {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    align-items: stretch;
}

.media-content {
    height: 100%;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.media-content video, .media-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.text-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.7;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    border-top: 1px solid #333;
}

.bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #fff;
    color: #000;
}

.bottom-text {
    display: flex;
    flex-direction: column;
}

.project-by {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.press-play {
    font-size: 0.6rem;
    color: var(--color-accent);
}

.bottom-right .footer-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    filter: brightness(0) invert(1);
}

.bottom-right .footer-logos img {
    height: 25px;
    opacity: 0.8;
}

/* Image Grid in Media Content */
.media-content .image-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    height: 100%;
    width: 100%;
}

.media-content .image-grid img {
    border-bottom: 1px solid var(--border-color);
}

.media-content .image-grid img:last-child {
    border-bottom: none;
}

/* Credits Logos */
.credits-logos {
    padding: 40px;
    filter: brightness(0) invert(1);
}

.credits-logos img {
    max-width: 100%;
    height: auto;
}

.small-text {
    font-size: 0.65rem;
    color: var(--color-accent);
    margin-bottom: 10px;
}

/* Scroll Snapping */
main {
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: scroll;
}

/* Responsive */
@media (max-width: 1024px) {
    .deck-section {
        padding: 20px;
        height: auto;
        min-height: 100vh;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .media-content {
        height: 40vh;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .side-nav {
        display: none;
    }
}
