﻿body {
    font-family: 'Arial', sans-serif;
}

/* Hero section styling */
.hero {
    /*background: url('assets/img/VimeoPlaceholder2.png') no-repeat center center;*/
    background-size: cover;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    color: white;
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Ensure the film section doesn't overlap */
.film-section {
    padding: 50px 0;
    min-height: calc(100vh - 200px); /* Adjust based on the height of your footer */
    margin-bottom: 50px;
}

.film-card {
    perspective: 1000px;
    transition: transform 0.5s ease;
    position: relative;
    /* Remove fixed height */
}

.film-card-inner {
    position: relative;
    width: 100%;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.8s;
    /* Use aspect ratio */
    aspect-ratio: 3 / 4; /* Adjust based on your image dimensions */
}

.film-card:hover .film-card-inner {
    transform: rotateY(180deg);
}

.film-card-front,
.film-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 5px;
    top: 0;
    left: 0;
}

.film-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.film-card-front {
    background: #f8f9fa;
}

.film-card-back {
    background: #343a40;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.film-details h5 {
    font-size: 18px;
    font-weight: bold;
}
