/* ================= FILMS PAGE ================= */

/* Grid same rhythm as gallery */
.films-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Film Card */
.film-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 16 / 9;
}

.film-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* Hover depth like gallery */
.film-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(45,90,61,0.25);
}

.film-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.film-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.6)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.film-card:hover .film-overlay {
    opacity: 1;
}

/* Play Button */
.play-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(201, 151, 43, 0.95);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
}

.film-card:hover .play-icon {
    transform: scale(1.1);
}

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

@media (max-width: 1024px) {
    .films-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .films-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FILMS FOOTER ===== */
.films-footer {
    text-align: center;
    margin-top: 4rem;
}

.btn-youtube {
    display: inline-block;
    padding: 1rem 3rem;
    background: #c4302b;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.btn-youtube:hover {
    background: #a9231f;
    transform: translateY(-3px);
}

