/* ============================================
   TOM SACHS MINIMALIST AESTHETIC
   ============================================ */

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

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-size: 14px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navigation {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1000;
    padding: 30px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.logo {
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1;
    font-style: italic;
}

.contact-link {
    font-size: 12px;
    letter-spacing: 0.1em;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
}

.contact-link a {
    color: #000000;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-link a:hover {
    opacity: 0.6;
}

/* ============================================
   GENERAL LAYOUT
   ============================================ */

.section {
    padding: 60px 40px;
}

h1 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ============================================
   CONTENT SECTION - FLEXBOX LAYOUT
   ============================================ */

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    flex-wrap: wrap;
}

.content-column {
    flex-shrink: 0;
}

.left-column {
    width: 500px;
    max-width: 100%;
    order: 1;
}

.right-column {
    width: 500px;
    max-width: 100%;
    order: 2;
}

/* ============================================
   FILMS SECTION - SINGLE ITEM
   ============================================ */

.films-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.film-item {
    position: relative;
    cursor: pointer;
    overflow: visible;
}

.film-item a {
    text-decoration: none;
    display: block;
}

.film-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #000000;
    transition: opacity 0.3s ease;
}

.film-item:hover .film-thumbnail {
    opacity: 0.7;
}

.film-overlay {
    display: none;
}

.play-icon {
    display: none;
}

.film-title {
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.4;
    color: #000000;
}

.film-runtime {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-top: 5px;
    font-weight: 400;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #666666;
}

/* ============================================
   IMAGE CONTAINER - RIGHT COLUMN
   ============================================ */

.image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    border: 1px solid #000000;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .content-wrapper {
        gap: 80px;
    }

    .left-column,
    .right-column {
        width: 450px;
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        gap: 60px;
    }

    .left-column,
    .right-column {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 48px;
    }

    .logo-image {
        height: 50px;
    }

    .nav-container {
        gap: 15px;
        padding: 20px;
    }

    .section {
        padding: 40px 20px;
    }

    /* STACK VERTICALLY ON MOBILE */
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .left-column {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .right-column {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    h1 {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }

    .nav-container {
        padding: 15px;
        gap: 10px;
    }

    .section {
        padding: 30px 15px;
    }

    h1 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}
