/* =========================================================
   Monthly Movies – Banner + Grid Styling
   ========================================================= */


/* ===============================
   Banner Movie Styling
   =============================== */

.banner-movie {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    min-height: 600px;
    padding: 140px 10vw 120px;   /* more left/right spacing */
    box-sizing: border-box;
    overflow: hidden;

    /* stretch full width even inside boxed container */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.75) 0, transparent 55%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

/* "Movie of the Month" pill */
.movie-month-tag {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background-color: rgba(7, 94, 100, 0.9); /* deep green pill */
    color: #ffffff;
    margin-bottom: 16px;
}

/* Movie title */
.movie-title {
    font-size: 3.6rem !important;
    line-height: 1.1;
    margin: 0 0 18px;
    color: #ffffff !important;
}

/* Description text under title */
.movie-description {
    font-size: 1.05rem !important;
    line-height: 1.6;
    max-width: 560px;
    margin: 0;
}

/* CTA button */
.register-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 14px 32px;
    border-radius: 999px;
    background-color: #e53935; /* bright red */
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.register-button:hover {
	color: #ff4b3a !important;
    background-color: #ffff !important;
    transform: translateY(-1px) !important;
}

.chevron-icon {
    margin-left: 10px;
}

/* Right-side poster card */
.banner-thumbnail {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    max-width: 430px;          /* larger poster */
    margin-left: 48px;
}

.banner-thumbnail img {
    display: block;
    width: 100%;
    height: auto !important;
    border-radius: 18px !important;       /* rounder corners */
    border: 2px solid #e53935 !important; /* 2px red border */
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.8) !important;
}

/* Slight extra boost on very large screens */
@media (min-width: 1500px) {
    .banner-thumbnail {
        max-width: 460px;
    }
}


/* ===============================
   Responsive Banner Tweaks
   =============================== */

@media (max-width: 1200px) {
    .banner-movie {
        padding: 110px 7vw 90px;
    }

    .movie-title {
        font-size: 3rem !important;
    }
}

@media (max-width: 1024px) {
    .banner-movie {
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 24px 70px;
    }

    .banner-thumbnail {
        margin: 32px auto 0;
        max-width: 320px;
    }

    .movie-title {
        font-size: 2.6rem !important;
    }
}

@media (max-width: 768px) {
    .banner-movie {
        padding: 80px 16px 60px;
        min-height: 0;
    }

    .movie-title {
        font-size: 2.2rem !important;
    }

    .movie-description {
        font-size: 0.98rem !important;
    }
}


/* ===============================
   Movies Grid Styling  ([movies_grid])
   =============================== */

.movies-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.movie-item {
    background: rgba(3, 3, 3, 0.96);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
}

.movie-thumbnail {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center center;
}

.movie-month {
    position: absolute;
    left: 126px;
    bottom: 16px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.78);
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.movie-text {
    padding: 18px 18px 22px;
    color: #ffffff;
}

.movie-text h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    line-height: 1.35;
}

.movie-text p {
    margin: 0;
    font-size: 0.70rem;
    line-height: 1.55;
}


/* ===============================
   Responsive Grid Tweaks
   =============================== */

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

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

    .movie-thumbnail {
        height: 220px;
    }

    .movie-text h3 {
        font-size: 1.05rem;
    }

    .movie-text p {
        font-size: 0.9rem;
    }
}
