/* ===== Global Styles ===== */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;

    /* Seamless cinematic gradient for the entire site */
    background: radial-gradient(
        circle at top center,
        rgba(255, 199, 76, 0.25) 0%,     /* warm gold glow */
        rgba(28, 31, 38, 0.85) 45%,      /* blue-grey midtone */
        rgba(10, 10, 15, 1) 100%         /* deep cinema black */
    );

    background-attachment: fixed;
    color: #F2F2F2;
    line-height: 1.6;
}



/* =========================================================
   NAVIGATION (DESKTOP + MOBILE WITH HAMBURGER MENU)
   ========================================================= */

nav {
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;

    /* Dark gradient strip for readability */
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 8, 0.85),
        rgba(5, 5, 8, 0.00)
    );

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hamburger icon (mobile only) */
.mobile-menu-button {
    display: none;

    font-size: 32px;
    color: #F2C232;

    background: rgba(5, 5, 8, 0.85);

    border: 1px solid rgba(242, 194, 50, 0.4);
    border-radius: 6px;

    padding: 8px 12px;

    cursor: pointer;
}


/* Container for nav links */
.nav-links {
    display: flex;
    gap: 30px;
}

/* Desktop links */
nav a {
    color: #F2C232;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}


nav a:hover {
    color: #FFFFFF;
}



/* =========================================================
   LOGO
   ========================================================= */

.logo-container {
    text-align: center;
    padding: 50px 0 30px;
}

.logo-container img {
    max-width: 380px;
    width: 85%;
}



/* =========================================================
   PAGE LAYOUT
   ========================================================= */

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
}

/* =========================================================
   FILM CARDS
   ========================================================= */

.film-card {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.03)
    );
    border: 1px solid rgba(242,194,50,0.25);
    border-left: 4px solid #F2C232;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0 35px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.film-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(242,194,50,0.6);
    transform: translateY(-3px);
}

.film-card h3 {
    color: #F2C232;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.film-card p {
    margin-bottom: 12px;
}

.film-card strong {
    color: #F2C232;
}

/* =========================================================
   FILM POSTERS
   ========================================================= */

.film-poster {
    width: 280px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;

    border-radius: 8px;

    border: 1px solid rgba(242,194,50,0.25);

    box-shadow:
        0 4px 12px rgba(0,0,0,0.40);

    transition: transform 0.3s ease;
}

.film-poster:hover {
    transform: scale(1.02);
}

/* =========================================================
   TRAILERS
   ========================================================= */

.trailer-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-top: 20px;
}

.trailer-container iframe {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border: none;
    border-radius: 8px;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.35);
}


/* =========================================================
   HOME PAGE HERO
   ========================================================= */

.hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 10px 0;
}

.hero h1 {
    color: #F2C232;
    font-size: 2.1rem;
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.6);
}

.hero-tagline {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.35rem;
    color: #F2F2F2;
    font-weight: 300;
    line-height: 1.5;
}

h1, h2 {
    color: #F2C232;
}

p, li {
    color: #F2F2F2;
}



/* =========================================================
   MOBILE RESPONSIVE BREAKPOINTS
   ========================================================= */

@media (max-width: 768px) {
    /* Show hamburger */
    nav {
    flex-direction: column;
    align-items: flex-start;
    }
    
    .mobile-menu-button {
        display: block;
        width: 100%;
        text-align: left;
    }

    /* Hide links until menu opened */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 12px;
        animation: slideDown 0.25s ease-out forwards;
    }

    /* Reveal menu when toggled */
    .nav-links.open {
        display: flex;
    }

    /* Bigger tap zones */
    nav a {
        padding: 10px 0;
        font-size: 18px;
        display: block;
    }

    .logo-container img {
        max-width: 350px;
    }

    .container {
        width: 90%;
        padding: 16px;
    }

    .hero {
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-tagline {
        font-size: 1.1rem;
        width: 90%;
    }
}

@media (max-width: 480px) {

    nav a {
        font-size: 16px;
    }

    .logo-container img {
        max-width: 300px;
    }

    h1 {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    p, li {
        font-size: 16px;
    }
}



/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}



/* =========================================================
   FOOTER — matches existing theme
   ========================================================= */

.site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(242, 194, 50, 0.25); /* subtle gold line */
    background: linear-gradient(
        to top,
        rgba(5, 5, 8, 0.85),
        rgba(5, 5, 8, 0.35)
    ); /* echoes nav strip */
    color: #F2F2F2;
}

.footer-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 18px 20px 24px;
    text-align: center;
}

.footer-brandline {
    margin-bottom: 8px;
    opacity: 0.95;
}

.footer-brand {
    color: #F2C232;
    font-weight: bold;
    letter-spacing: 0.2px;
}

.footer-sep {
    color: rgba(242, 194, 50, 0.8);
    margin: 0 8px;
}

.footer-tagline {
    color: #E8E8E8;
}

.footer-links {
    margin: 8px 0 10px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #F2C232;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-links span {
    color: #9a8b55; /* softer gold dot between links */
}

.footer-contact a {
    color: #F2F2F2;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-copy {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #CFCFCF;
    opacity: 0.95;
}

/* Small screens: keep everything centered and readable */
@media (max-width: 480px) {
    .footer-links {
        gap: 8px;
    }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(242,194,50,0.30);
    border-radius: 12px;
    padding: 32px;
    text-align: center;

    backdrop-filter: blur(4px);

    box-shadow:
        0 6px 20px rgba(0,0,0,0.35),
        0 0 20px rgba(242,194,50,0.08);
}

.contact-card h2 {
    margin-top: 0;
    color: #F2C232;
}

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;

    background: #F2C232;
    color: #111111;

    font-weight: bold;
    text-decoration: none;

    border-radius: 6px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-button:hover {
    background: #FFD75E;
    transform: translateY(-2px);
}
