/* =====================================================
   NARASIMHIKA CINEMAS
   PREMIUM CINEMA WEBSITE
===================================================== */


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* ================= VARIABLES ================= */

:root {

    --black: #000000;

    --dark: #080808;

    --dark-2: #111111;

    --gold: #d4af37;

    --gold-light: #e6c65c;

    --white: #ffffff;

    --gray: #b5b5b5;

    --dark-gray: #777;

    --border: rgba(212, 175, 55, 0.25);

}


/* ================= CONTAINER ================= */

.container {
    width: min(1200px, 90%);
    margin: auto;
}


/* ================= LOADER ================= */

.loader {

    position: fixed;

    inset: 0;

    background: #000;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    transition: opacity 0.8s ease,
                visibility 0.8s ease;

}

.loader.hide {

    opacity: 0;

    visibility: hidden;

}

.loader-logo {

    width: 70px;

    height: 70px;

    border: 1px solid var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    transform: rotate(45deg);

}

.loader-logo span {

    color: var(--gold);

    font-family: "Cinzel";

    font-size: 32px;

    transform: rotate(-45deg);

}

.loader-line {

    width: 150px;

    height: 1px;

    background: var(--gold);

    margin: 30px 0 15px;

    animation: loaderLine 1.5s infinite;

}

.loader p {

    color: #888;

    font-size: 11px;

    letter-spacing: 4px;

}

@keyframes loaderLine {

    0% {
        width: 20px;
    }

    50% {
        width: 150px;
    }

    100% {
        width: 20px;
    }

}


/* ================= NAVBAR ================= */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 22px 0;

    transition: 0.4s ease;

}

.navbar.scrolled {

    background: rgba(0, 0, 0, 0.94);

    backdrop-filter: blur(15px);

    padding: 15px 0;

    border-bottom: 1px solid rgba(212,175,55,0.12);

}

.nav-container {

    width: min(1350px, 92%);

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}

.logo-symbol {

    width: 48px;

    height: 48px;

    border: 1px solid var(--gold);

    color: var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: "Cinzel";

    font-size: 22px;

    transform: rotate(45deg);

}

.logo-symbol::first-letter {

    transform: rotate(-45deg);

}

.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}

.logo-text strong {

    font-family: "Cinzel";

    font-size: 14px;

    letter-spacing: 2px;

}

.logo-text span {

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 4px;

    margin-top: 5px;

}


.nav-links {

    display: flex;

    align-items: center;

    gap: 38px;

}

.nav-links a {

    font-size: 13px;

    color: #ccc;

    transition: 0.3s;

    letter-spacing: 0.5px;

}

.nav-links a:hover,
.nav-links a.active {

    color: var(--gold);

}

.nav-contact {

    border: 1px solid var(--gold);

    padding: 12px 24px;

    color: var(--gold) !important;

}

.nav-contact:hover {

    background: var(--gold);

    color: #000 !important;

}


/* ================= MOBILE MENU ================= */

.menu-btn {

    display: none;

    background: none;

    border: none;

    width: 35px;

}

.menu-btn span {

    display: block;

    height: 2px;

    background: var(--gold);

    margin: 6px 0;

}

.mobile-menu {

    position: fixed;

    top: 0;

    right: -100%;

    width: 80%;

    height: 100vh;

    background: #080808;

    z-index: 999;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 30px;

    transition: 0.5s;

}

.mobile-menu.active {

    right: 0;

}

.mobile-menu a {

    font-family: "Cinzel";

    font-size: 20px;

}


/* ================= HERO ================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(25,30,50,0.7),
            transparent 45%
        ),

        linear-gradient(
            90deg,
            #000 30%,
            #050507 70%,
            #090b12
        );

}

.hero::after {

    content: "";

    position: absolute;

    right: 0;

    top: 0;

    width: 55%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            #000,
            transparent
        ),
        radial-gradient(
            ellipse at center,
            rgba(212,175,55,0.08),
            transparent 65%
        );

}

.hero-content {

    position: relative;

    z-index: 2;

    width: min(1200px, 90%);

    margin: auto;

    padding-top: 80px;

}

.hero-label {

    color: var(--gold);

    letter-spacing: 4px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 25px;

}

.hero-label span {

    color: #555;

    margin: 0 10px;

}

.hero h1 {

    font-family: "Cinzel", serif;

    font-size: clamp(55px, 7vw, 100px);

    line-height: 0.95;

    font-weight: 600;

    max-width: 950px;

    letter-spacing: -2px;

}

.hero h1 span {

    color: var(--gold);

}

.hero p {

    max-width: 650px;

    color: #aaa;

    font-size: 16px;

    line-height: 1.9;

    margin: 35px 0;

}

.hero-buttons {

    display: flex;

    gap: 18px;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 15px 28px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.5px;

    transition: 0.3s;

}

.btn-gold {

    background: var(--gold);

    color: #000;

}

.btn-gold:hover {

    background: var(--gold-light);

    transform: translateY(-3px);

}

.btn-outline {

    border: 1px solid #555;

    color: #fff;

}

.btn-outline:hover {

    border-color: var(--gold);

    color: var(--gold);

}

.hero-scroll {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 15px;

    color: #777;

    font-size: 9px;

    letter-spacing: 3px;

}

.scroll-line {

    width: 60px;

    height: 1px;

    background: var(--gold);

}


/* ================= SECTION ================= */

.section {

    padding: 130px 0;

    background: var(--black);

}

.section-heading {

    display: flex;

    gap: 25px;

    align-items: flex-start;

    margin-bottom: 70px;

}

.section-number {

    color: var(--gold);

    font-size: 13px;

    letter-spacing: 2px;

    padding-top: 12px;

}

.eyebrow {

    color: var(--gold);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;

    margin-bottom: 15px;

}

.section-heading h2 {

    font-family: "Cinzel";

    font-size: clamp(38px, 5vw, 65px);

    font-weight: 500;

    line-height: 1.1;

}

.section-heading h2 span {

    color: var(--gold);

}


/* ================= ABOUT ================= */

.about {

    background: #050505;

}

.about-grid {

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 100px;

}

.large-text {

    font-size: 22px;

    line-height: 1.7;

    color: #eee;

}

.about-text p:not(.large-text) {

    color: #888;

    line-height: 1.9;

    margin-top: 25px;

}

.text-link {

    display: inline-flex;

    gap: 15px;

    margin-top: 35px;

    color: var(--gold);

    font-size: 13px;

}

.text-link span {

    transition: 0.3s;

}

.text-link:hover span {

    transform: translateX(8px);

}

.about-stats {

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid #222;

    border-left: 1px solid #222;

}

.stat {

    padding: 35px;

    border-right: 1px solid #222;

    border-bottom: 1px solid #222;

}

.stat strong {

    display: block;

    font-family: "Cinzel";

    font-size: 42px;

    color: var(--gold);

}

.stat span {

    color: #777;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;

}


/* ================= LATEST ================= */

.latest {

    min-height: 650px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 70%,
            #25201a,
            #050505 60%
        );

}

.latest-image {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            #000 10%,
            transparent 75%
        );

}

.latest-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            #000,
            transparent 40%,
            #000
        );

}

.latest-content {

    position: relative;

    z-index: 2;

}

.latest-label {

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 4px;

}

.latest h2 {

    font-family: "Cinzel";

    font-size: clamp(55px, 7vw, 90px);

    line-height: 1;

    margin: 20px 0;

}

.latest p {

    max-width: 450px;

    color: #999;

    line-height: 1.8;

    margin-bottom: 30px;

}


/* ================= MOVIES ================= */

.movie-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}

.movie-card {

    background: #090909;

    transition: 0.4s;

}

.movie-card:hover {

    transform: translateY(-10px);

}

.movie-image {

    height: 480px;

    position: relative;

    overflow: hidden;

}

.movie-one {

    background:
        linear-gradient(
            145deg,
            #33251b,
            #080808
        );

}

.movie-two {

    background:
        linear-gradient(
            145deg,
            #16252c,
            #050505
        );

}

.movie-three {

    background:
        linear-gradient(
            145deg,
            #291b2b,
            #050505
        );

}

.movie-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.8),
            transparent 60%
        );

}

.movie-status {

    position: absolute;

    top: 20px;

    left: 20px;

    border: 1px solid var(--gold);

    color: var(--gold);

    padding: 7px 12px;

    font-size: 9px;

    letter-spacing: 2px;

}

.play-btn {

    position: absolute;

    bottom: 25px;

    right: 25px;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    border: 1px solid var(--gold);

    background: rgba(0,0,0,.5);

    color: var(--gold);

    transition: 0.3s;

}

.play-btn:hover {

    background: var(--gold);

    color: #000;

}

.movie-info {

    padding: 25px;

}

.movie-info > span {

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;

}

.movie-info h3 {

    font-family: "Cinzel";

    font-size: 25px;

    margin: 10px 0;

}

.movie-info p {

    color: #777;

    font-size: 12px;

}


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

.trailers {

    background: #050505;

}


/* ================= TRAILER FEATURE ================= */

.trailer-feature {

    height: 560px;

    position: relative;

    overflow: hidden;

    border: 1px solid #1d1d1d;

    background:
        radial-gradient(
            circle at 50% 40%,
            #3a2b1a 0%,
            #17120d 28%,
            #050505 70%
        );

}


/* cinematic overlay */

.trailer-feature::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85),
            transparent 45%,
            rgba(0,0,0,.85)
        );

    z-index: 1;

}


/* top and bottom cinematic shadows */

.trailer-feature::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.9),
            transparent 25%,
            transparent 75%,
            rgba(0,0,0,.6)
        );

    z-index: 2;

}


.trailer-image {

    position: absolute;

    inset: 0;

    display: flex;

    justify-content: center;

    align-items: center;

}


.trailer-content {

    position: relative;

    z-index: 3;

    text-align: center;

    max-width: 700px;

    padding: 30px;

}


.trailer-content > span {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 5px;

}


.trailer-content h3 {

    font-family: "Cinzel";

    font-size: clamp(40px, 6vw, 75px);

    font-weight: 400;

    margin: 18px 0;

    line-height: 1.1;

}


.trailer-content p {

    color: #888;

    font-size: 14px;

    margin-bottom: 35px;

}


/* ================= BIG PLAY ================= */

.big-play {

    width: 85px;

    height: 85px;

    border-radius: 50%;

    border: 1px solid var(--gold);

    background: var(--gold);

    color: #000;

    font-size: 20px;

    cursor: pointer;

    transition: .35s ease;

}


.big-play:hover {

    transform: scale(1.12);

    box-shadow:
        0 0 0 10px rgba(212,175,55,.08),
        0 0 35px rgba(212,175,55,.25);

}


/* ================= TRAILER META ================= */

.trailer-meta {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-left: 1px solid #1d1d1d;

    border-right: 1px solid #1d1d1d;

    border-bottom: 1px solid #1d1d1d;

}


.trailer-meta div {

    padding: 25px 30px;

    border-right: 1px solid #1d1d1d;

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.trailer-meta div:last-child {

    border-right: none;

}


.trailer-meta span {

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;

}


.trailer-meta strong {

    color: #ccc;

    font-size: 13px;

    font-weight: 400;

}


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

@media (max-width: 700px) {

    .trailer-feature {

        height: 480px;

    }


    .trailer-content h3 {

        font-size: 42px;

    }


    .trailer-meta {

        grid-template-columns: 1fr;

    }


    .trailer-meta div {

        border-right: none;

        border-bottom: 1px solid #1d1d1d;

    }


    .trailer-meta div:last-child {

        border-bottom: none;

    }

}

/* ================= GALLERY ================= */

.gallery-grid {

    display: grid;

    grid-template-columns: 1.2fr 0.8fr 0.8fr;

    grid-auto-rows: 230px;

    gap: 15px;

}

.gallery-item {

    overflow: hidden;

}

.gallery-large {

    grid-row: span 2;

}

.gallery-wide {

    grid-column: span 2;

}

.gallery-placeholder {

    width: 100%;

    height: 100%;

    background:
        linear-gradient(
            135deg,
            #28231b,
            #0b0b0b
        );

    display: flex;

    align-items: flex-end;

    justify-content: flex-start;

    padding: 25px;

    transition: 0.5s;

}

.gallery-item:nth-child(2) .gallery-placeholder {

    background:
        linear-gradient(
            135deg,
            #1c2528,
            #070707
        );

}

.gallery-item:nth-child(3) .gallery-placeholder {

    background:
        linear-gradient(
            135deg,
            #29201e,
            #080808
        );

}

.gallery-item:nth-child(4) .gallery-placeholder {

    background:
        linear-gradient(
            135deg,
            #201f29,
            #080808
        );

}

.gallery-item:nth-child(5) .gallery-placeholder {

    background:
        linear-gradient(
            135deg,
            #29251c,
            #070707
        );

}

.gallery-placeholder:hover {

    transform: scale(1.05);

}

.gallery-placeholder span {

    color: var(--gold);

    font-family: "Cinzel";

    font-size: 20px;

}


/* ================= PHILOSOPHY ================= */

.philosophy {

    padding: 160px 0;

    background:
        radial-gradient(
            circle at center,
            #17130d,
            #000 65%
        );

    text-align: center;

}

.philosophy-content {

    max-width: 900px;

    margin: auto;

}

.philosophy h2 {

    font-family: "Cinzel";

    font-size: clamp(40px,6vw,75px);

    line-height: 1.2;

    font-weight: 400;

}

.philosophy h2 span {

    color: var(--gold);

}

.gold-line {

    width: 80px;

    height: 1px;

    background: var(--gold);

    margin: 35px auto;

}

.philosophy-content > p:last-child {

    color: #777;

}


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

.contact {

    background: #050505;

}

.contact-grid {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

}

.contact-info .large-text {

    margin-bottom: 50px;

}

.contact-detail {

    padding: 20px 0;

    border-top: 1px solid #222;

    display: flex;

    flex-direction: column;

    gap: 8px;

}

.contact-detail span {

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;

}

.contact-detail a {

    color: #ccc;

    font-size: 14px;

}

.contact-detail a:hover {

    color: var(--gold);

}


/* ================= FORM ================= */

.contact-form {

    background: #0a0a0a;

    padding: 40px;

    border: 1px solid #1d1d1d;

}

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}

.form-group {

    display: flex;

    flex-direction: column;

    margin-bottom: 22px;

}

.form-group label {

    color: #888;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 10px;

}

.form-group input,
.form-group textarea {

    background: #050505;

    border: 1px solid #222;

    color: #fff;

    padding: 15px;

    outline: none;

    resize: vertical;

    transition: 0.3s;

}

.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--gold);

}

.submit-btn {

    border: none;

}


/* ================= FOOTER ================= */

.footer {

    background: #000;

    padding: 70px 0 25px;

    border-top: 1px solid #171717;

}

.footer-top {

    display: flex;

    justify-content: space-between;

    gap: 60px;

    padding-bottom: 60px;

}

.footer-brand p {

    color: #666;

    margin-top: 20px;

    font-size: 12px;

}

.footer-links {

    display: flex;

    gap: 80px;

}

.footer-links div {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.footer-links h4 {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 8px;

}

.footer-links a {

    color: #777;

    font-size: 12px;

}

.footer-links a:hover {

    color: #fff;

}

.footer-bottom {

    padding-top: 25px;

    border-top: 1px solid #171717;

    display: flex;

    justify-content: space-between;

    color: #555;

    font-size: 10px;

    letter-spacing: 1px;

}


/* ================= MODAL ================= */

.modal {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.9);

    z-index: 5000;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;

}

.modal.active {

    opacity: 1;

    visibility: visible;

}

.modal-content {

    width: min(900px,90%);

    height: 500px;

    position: relative;

}

.modal-close {

    position: absolute;

    top: -50px;

    right: 0;

    background: none;

    border: none;

    color: white;

    font-size: 35px;

}

.video-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle,
            #282015,
            #050505
        );

}

.video-placeholder span {

    color: var(--gold);

    letter-spacing: 3px;

    font-size: 10px;

}

.video-placeholder h3 {

    font-family: "Cinzel";

    font-size: 45px;

    margin: 15px;

}

.video-placeholder p {

    color: #777;

}


/* ================= REVEAL ================= */

.reveal {

    opacity: 0;

    transform: translateY(40px);

    transition: 0.8s ease;

}

.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


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

@media (max-width: 900px) {

    .nav-links {

        display: none;

    }

    .menu-btn {

        display: block;

    }

    .hero h1 {

        font-size: clamp(45px, 10vw, 75px);

    }

    .about-grid,
    .contact-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }

    .movie-grid {

        grid-template-columns: 1fr 1fr;

    }

    .movie-card:last-child {

        grid-column: span 2;

    }

    .gallery-grid {

        grid-template-columns: 1fr 1fr;

    }

    .gallery-wide {

        grid-column: span 2;

    }

    .footer-top {

        flex-direction: column;

    }

}


@media (max-width: 600px) {

    .section {

        padding: 90px 0;

    }

    .hero-content {

        padding-top: 100px;

    }

    .hero h1 {

        font-size: 48px;

    }

    .hero p {

        font-size: 14px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

    }

    .movie-grid {

        grid-template-columns: 1fr;

    }

    .movie-card:last-child {

        grid-column: auto;

    }

    .movie-image {

        height: 400px;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 220px;

    }

    .gallery-large {

        grid-row: span 1;

    }

    .gallery-wide {

        grid-column: auto;

    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }

    .contact-form {

        padding: 25px;

    }

    .footer-links {

        gap: 30px;

        flex-wrap: wrap;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 15px;

    }

}
/* =====================================================
   FINAL OVERRIDES
   NARASIMHIKA CINEMAS
===================================================== */


/* ================= GALLERY ================= */

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: 230px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 230px;
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}


/* Gallery backgrounds */

.gallery-one {
    background:
        linear-gradient(
            135deg,
            #33271d,
            #080808
        );
}

.gallery-two {
    background:
        linear-gradient(
            135deg,
            #17272c,
            #060606
        );
}

.gallery-three {
    background:
        linear-gradient(
            135deg,
            #30201f,
            #070707
        );
}

.gallery-four {
    background:
        linear-gradient(
            135deg,
            #24232d,
            #070707
        );
}

.gallery-five {
    background:
        linear-gradient(
            135deg,
            #30291d,
            #070707
        );
}


/* Cinematic texture */

.gallery-visual::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(212,175,55,0.10),
            transparent 35%
        );

    pointer-events: none;
}


/* Overlay */

.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 28px;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,0.90),
            rgba(0,0,0,0.05) 70%
        );

    z-index: 2;
}


/* Caption */

.gallery-caption small {
    display: block;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.gallery-caption h3 {
    font-family: "Cinzel", serif;

    font-size: 21px;

    font-weight: 500;

    color: #fff;
}


/* Gallery hover */

.gallery-item:hover .gallery-visual {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-caption h3 {
    color: var(--gold);
}


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

.contact {
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(212,175,55,0.07),
            transparent 35%
        ),
        #050505;
}


/* Heading */

.contact-heading {
    max-width: 750px;
    margin-bottom: 70px;
}

.contact-intro {
    max-width: 650px;

    color: #888;

    font-size: 15px;

    line-height: 1.9;

    margin-top: 25px;
}


/* Main contact layout */

.contact-content {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}


/* Contact information */

.contact-info {
    display: flex;

    flex-direction: column;
}

.contact-item {
    padding: 24px 0;

    border-top: 1px solid #222;
}

.contact-label {
    display: block;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.contact-value {
    color: #ccc;

    font-size: 14px;

    line-height: 1.7;
}


/* Contact CTA */

.contact-cta {
    background:
        linear-gradient(
            135deg,
            #111,
            #080808
        );

    border: 1px solid #222;

    padding: 55px;

    position: relative;

    overflow: hidden;
}

.contact-cta::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    top: -70px;

    border: 1px solid rgba(212,175,55,0.18);

    border-radius: 50%;
}

.contact-cta h3 {
    position: relative;

    font-family: "Cinzel", serif;

    font-size: clamp(30px, 4vw, 48px);

    font-weight: 500;

    line-height: 1.2;

    margin-bottom: 20px;
}

.contact-cta p {
    position: relative;

    color: #777;

    max-width: 500px;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* ================= BUTTON ================= */

.btn-primary {
    background: var(--gold);

    color: #000;

    border: 1px solid var(--gold);

    padding: 14px 27px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.7px;

    transition: 0.3s ease;
}

.btn-primary:hover {
    background: var(--gold-light);

    border-color: var(--gold-light);

    transform: translateY(-2px);
}


/* ================= HERO FINAL ================= */

.hero-tag {
    display: inline-block;

    color: var(--gold);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 22px;
}

.hero-description {
    max-width: 600px;

    color: #aaa;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 36px;
}


/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-large,
    .gallery-item-tall {
        grid-row: span 2;
    }

    .contact-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 260px;
    }

    .gallery-item-large,
    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-overlay {
        padding: 22px;
    }

    .gallery-caption h3 {
        font-size: 18px;
    }

    .contact-content {
        gap: 35px;
    }

    .contact-cta {
        padding: 30px 25px;
    }

}
/* =====================================================
   MOVIES - FINAL CINEMATIC DESIGN
===================================================== */


/* ================= MOVIE GRID ================= */

.movie-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* ================= MOVIE CARD ================= */

.movie-card {
    background: #090909;

    border: 1px solid #181818;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.movie-card:hover {
    transform: translateY(-10px);

    border-color: rgba(212,175,55,0.45);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.5);
}


/* ================= MOVIE IMAGE ================= */

.movie-image {
    height: 500px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* Movie 1 */

.movie-one {
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(150,105,55,0.35),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #3b2b20,
            #090909 75%
        );
}


/* Movie 2 */

.movie-two {
    background:
        radial-gradient(
            circle at 65% 35%,
            rgba(70,120,135,0.30),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #1c3038,
            #050505 75%
        );
}


/* Movie 3 */

.movie-three {
    background:
        radial-gradient(
            circle at 45% 35%,
            rgba(110,65,105,0.30),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #332238,
            #050505 75%
        );
}


/* ================= POSTER CONTENT ================= */

.movie-poster-content {
    position: relative;

    z-index: 2;

    width: 80%;

    text-align: center;

    transform:
        translateY(-10px);
}


.poster-label {
    display: block;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 4px;

    margin-bottom: 35px;
}


.movie-poster-content h4 {
    font-family: "Cinzel", serif;

    color: #f4f4f4;

    font-size: clamp(
        25px,
        3vw,
        38px
    );

    font-weight: 500;

    line-height: 1.15;

    letter-spacing: 1px;

    margin: 0;
}


.movie-poster-content h4 span {
    display: block;

    color: var(--gold);
}


.poster-line {
    width: 45px;

    height: 1px;

    background: var(--gold);

    margin: 25px auto;
}


.movie-poster-content p {
    color: rgba(255,255,255,0.55);

    font-size: 8px;

    letter-spacing: 3px;

    margin: 0;
}


/* ================= MOVIE OVERLAY ================= */

.movie-overlay {
    position: absolute;

    inset: 0;

    z-index: 3;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,0.92),
            rgba(0,0,0,0.10) 55%,
            rgba(0,0,0,0.30)
        );

    pointer-events: none;
}


/* ================= STATUS ================= */

.movie-status {
    position: absolute;

    top: 20px;

    left: 20px;

    z-index: 5;

    border: 1px solid var(--gold);

    color: var(--gold);

    background: rgba(0,0,0,0.35);

    padding: 8px 12px;

    font-size: 8px;

    letter-spacing: 2px;

    backdrop-filter: blur(5px);
}


/* ================= PLAY BUTTON ================= */

.play-btn {
    position: absolute;

    right: 25px;

    bottom: 25px;

    z-index: 5;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    border: 1px solid var(--gold);

    background:
        rgba(0,0,0,0.55);

    color: var(--gold);

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.play-btn:hover {
    background: var(--gold);

    color: #000;

    transform: scale(1.08);
}


/* ================= MOVIE INFO ================= */

.movie-info {
    padding: 25px 25px 30px;
}


.movie-info-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 10px;
}


.movie-info-top > span {
    color: var(--gold);

    font-size: 8px;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.movie-info-top small {
    color: #444;

    font-size: 10px;

    letter-spacing: 1px;
}


.movie-info h3 {
    font-family: "Cinzel", serif;

    color: #fff;

    font-size: 24px;

    font-weight: 500;

    margin: 0 0 10px;

    transition:
        color 0.3s ease;
}


.movie-card:hover .movie-info h3 {
    color: var(--gold);
}


.movie-info p {
    color: #777;

    font-size: 12px;

    margin: 0;
}


.movie-info p span {
    color: var(--gold);

    padding: 0 5px;
}


/* ================= MOVIE IMAGE HOVER ================= */

.movie-card .movie-image {
    transition:
        transform 0.6s ease;
}


.movie-card:hover .movie-image {
    transform: scale(1.02);
}


/* ================= MOVIE MOBILE ================= */

@media (max-width: 900px) {

    .movie-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .movie-card:last-child {
        grid-column: span 2;
    }

}


@media (max-width: 600px) {

    .movie-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .movie-card:last-child {
        grid-column: auto;
    }

    .movie-image {
        height: 450px;
    }

    .movie-info {
        padding: 22px;
    }

    .movie-info h3 {
        font-size: 21px;
    }

}
/* ================= NAVBAR LOGO ================= */

.navbar-logo {
    width: 105px;
    height: 75px;

    display: block;

    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;

    text-decoration: none;

    line-height: 0;
}


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

@media (max-width: 600px) {

    .navbar-logo {
        width: 120px;
    }

}
/* ================= PUBLIC GALLERY IMAGES ================= */

#publicGalleryGrid .gallery-item {
    overflow: hidden;
    min-height: 300px;
}

#publicGalleryGrid .gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}
/* =====================================================
   DYNAMIC PUBLIC TRAILERS
===================================================== */

.trailers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
}

.trailer-card {
    width: 100%;
    border: 1px solid #242424;
    background: #080808;
    overflow: hidden;
    transition: 0.3s ease;
}

.trailer-card:hover {
    border-color: #c9a227;
    transform: translateY(-5px);
}

.trailer-media {
    position: relative;
    width: 100%;
}

.trailer-thumbnail {
    width: 100%;
    height: 480px;

    background:
        radial-gradient(
            circle at center,
            #392f22,
            #050505 70%
        );

    background-size: cover;
    background-position: center;

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

    position: relative;
}

.trailer-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.65),
            transparent,
            rgba(0,0,0,.65)
        );
}

.play-button {
    position: relative;
    z-index: 2;

    width: 85px;
    height: 85px;

    border-radius: 50%;
    border: 1px solid var(--gold);

    background: var(--gold);
    color: #000;

    font-size: 22px;

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

    cursor: pointer;

    transition: 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.trailer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 25px;

    border-top: 1px solid #242424;
}

.trailer-number {
    color: #777;
    font-size: 13px;
}

.trailer-badge {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 4px;
}

.trailer-info {
    padding: 25px;
}

.trailer-info h3 {
    font-family: "Cinzel";
    font-size: 32px;
    margin: 0 0 10px;

    color: #fff;
}

.trailer-info p {
    color: #777;
    font-size: 14px;
    margin: 0;
}


/* MOBILE */

@media (max-width: 768px) {

    .trailer-thumbnail {
        height: 350px;
    }

    .trailer-info h3 {
        font-size: 25px;
    }

}
/* FIX TRAILER GRID SIZE */
.trailer-feature {
    height: 420px !important;
}

.trailer-image {
    height: 100% !important;
    min-height: 0 !important;
}

.trailer-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* ===== SMALLER TRAILER BOX ===== */

.trailer-feature {
    height: 150px !important;
    min-height: 150px !important;
}

.trailer-image {
    height: 150px !important;
    min-height: 150px !important;
}

.trailer-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trailer-content h3 {
    margin: 10px 0;
}

.trailer-content p {
    margin: 5px 0 15px;
}

.big-play {
    width: 55px !important;
    height: 55px !important;
}
/* =====================================================
   FINAL MOBILE RESPONSIVE FIX
===================================================== */

@media (max-width: 600px) {

    /* Prevent horizontal overflow */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Container */
    .container,
    .hero-content {
        width: 90%;
        max-width: 100%;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        width: 100%;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1;
        letter-spacing: -1px;
        max-width: 100%;
    }

    .hero p,
    .hero-description {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }

    /* Hero buttons */
    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
        white-space: normal;
    }

    /* Sections */
    .section {
        width: 100%;
        padding: 80px 0;
    }

    /* Movies */
    .movie-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .movie-card {
        width: 100%;
    }

    .movie-image {
        width: 100%;
        height: 400px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .gallery-item {
        width: 100%;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .contact-cta {
        padding: 30px 20px;
    }

    /* Forms */
    .contact-form {
        width: 100%;
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    /* Mobile menu */
    .mobile-menu {
        width: 85%;
    }

}
/* ================= MOBILE HERO FIX ================= */

@media (max-width: 600px) {

    .hero-scroll {
        display: none;
    }

    .hero-buttons {
        position: relative;
        z-index: 5;
    }

}