body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.site-footer {
    margin-top: auto; /* Pushes footer to the bottom if content is short */
    background-color: #1a1a1a;
    padding: 4rem 0 2rem 0;
}

.video-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); /* Stronger shadow for cinematic depth */
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.01); /* Subtle "pop" on hover */
}

/* ========== FILMS HERO UPDATES ========== */
.films-hero {
    position: relative;
    height: 45vh; /* Adjusted height for cinematic feel */
    width: 100%;
    overflow: hidden; /* Clips the video to the container */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #000; /* Fallback for when video loads */
}

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

.films-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity to make the title pop */
    z-index: 5;
}

.films-hero-content {
    position: relative; /* This allows z-index to work */
    z-index: 10;        /* Higher than video and overlay */
    text-align: center;
}

.films-hero h1 {
    color: #ffffff;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin: 0;
    z-index: 7;
}

/* ========== FILMS LIST ========== */
.films-list {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.film-item {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: start;
}

/* Video Wrapper for 16:9 Aspect Ratio */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Your requested shadows */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Info & Credits */
.film-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.film-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

.film-credits {
    display: grid;
    gap: 0.8rem;
    border-left: 2px solid #1a1a1a;
    padding-left: 1.5rem;
}

.credit {
    font-size: 0.9rem;
    color: #333;
    letter-spacing: 0.5px;
}

.credit strong {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #888;
    margin-right: 8px;
}

/* ========== FILMS CTA (Same as About Page) ========== */
.about-cta {
    padding: 10rem 2rem;
    text-align: center;
    background-color: #1a1a1a; /* Dark background to contrast the white film list */
    color: #fff;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-cta p {
    margin-bottom: 2.5rem;
    color: #aaa;
    font-size: 1.2rem;
    font-weight: 300;
}

/* Reusing your Primary Button Style */
.btn-primary {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .film-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}