/* ===================================
   Reset & Base Styles
   =================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

/* ===================================
   Layout
   =================================== */

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   Content Side
   =================================== */

.content-side {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   Typography
   =================================== */

.site-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* ===================================
   Navigation
   =================================== */

.navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1.5rem, 4vh, 4rem);
    width: 100%;
}

.nav-link {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    display: inline-block;
}

.nav-link:hover {
    opacity: 0.6;
    transform: translateX(5px);
}

.nav-link--contact {
    /* Contact link now has the same size as other links */
}

/* ===================================
   Gallery Side
   =================================== */

.gallery-side {
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.gallery {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: fadeIn 1s ease-in;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
    .container {
        flex-direction: column-reverse;
    }

    .split {
        min-height: 50vh;
    }

    .content-side {
        padding: 2rem;
    }

    .site-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}