﻿/* ---------------------------------------------
   GLOBAL VARIABLES & BASE STYLES
--------------------------------------------- */

:root {
    --bg-light: #fff9f2;
    --bg-lighter: #ffffff;
    --accent: #ff7b00;
    --accent-soft: #ffe0c2;
    --text-main: #2b2b2b;
    --text-muted: #6b6b6b;
    --border-soft: rgba(0,0,0,0.08);
    --radius: 12px;
    --shadow-soft: 0 10px 25px rgba(0,0,0,0.08);
    --transition-fast: 0.25s ease;
    --transition-med: 0.45s ease;
    --font-title: 'Fredoka One', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
  /*  background: var(--bg-light);*/
    color: var(--text-main);
    font-family: var(--font-body);
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------------------------------------------
   NAVIGATION + FULLSCREEN MENU
--------------------------------------------- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0; /* ← remove white space */
    z-index: 100;
    background: transparent;
}

.nav-logo {
    font-family: var(--font-title);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: #ff7b00;
}
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 !important;
    /* ← removes white space */
    margin: 0 !important;
    background: transparent !important;
    z-index: 1!important;
}
.nav-burger {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    width: 35px;
    height: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 9999 !important;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
}
    .nav-burger.active {
        transform: scale(1.05);
    }
        .nav-burger.active span {
            box-shadow: 0 0 8px #ff7b00;
        }


    .nav-burger span {
        display: block;
        width: 100%;
        height: 4px;
        background: #ff7b00 !important; /* ← force visible */
        border-radius: 2px;
        transition: 0.35s ease;
        /*background: red !important;*/
    }

    .nav-burger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .nav-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

/*.nav-burger {
    position: fixed;
    top: 20px;
    left: 20px;*/ /* ← forces left side */
    /*width: 35px;
    height: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 9999;*/ /* ← ABOVE blur overlay */
    /*padding: 0;
    margin: 0;
}*/

    /* The 3 lines */
    /*.nav-burger span {
        display: block;
        width: 100%;
        height: 4px;
        background: #ff7b00 !important;*/ /* ← visible color */
        /*border-radius: 2px;
        transition: 0.35s ease;
    }

    .nav-burger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .nav-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }*/

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.001); /* invisible but activates blur */
    backdrop-filter: blur(18px) brightness(0.7) contrast(1.1);
    /*backdrop-filter: blur(20px) brightness(0.6);*/
    /*backdrop-filter: blur(12px);*/ /* stronger blur hides video */
    /* background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);*/
    display: flex;
    justify-content: center; /* ← center horizontally */
    align-items: center; /* ← center vertically */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 150 !important;
}


    .menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.menu-inner {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    text-align: left;
}

    .menu-inner a {
        color: #ff7b00;
        text-decoration: none;
        font-family: var(--font-title);
        font-size: 2rem;
        font-weight:800;
        letter-spacing: 0.05em;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

.menu-overlay.active .menu-inner a:nth-child(1) {
    transition-delay: 0.10s;
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-inner a:nth-child(2) {
    transition-delay: 0.20s;
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-inner a:nth-child(3) {
    transition-delay: 0.30s;
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-inner a:nth-child(4) {
    transition-delay: 0.40s;
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-inner a:nth-child(5) {
    transition-delay: 0.50s;
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-inner a:nth-child(6) {
    transition-delay: 0.60s;
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------
   HERO SECTION
--------------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0.9) );
}

.hero-content {
   /* width:409px;*/
    height:100%;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    max-width: 240px;
    margin: 0 auto 1.5rem;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #ff7b00;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
}

.btn.primary {
    background: var(--accent);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(255,123,0,0.3);
    transition: var(--transition-fast);
}

    .btn.primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(255,123,0,0.45);
    }

/* TRAILER PREVIEW */
.trailer-preview {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.25s ease;
}

    .trailer-preview img {
        width: 100%;
        display: block;
    }

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: 0.25s ease;
}

.trailer-preview:hover .play-overlay {
    opacity: 1;
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
}

    .modal.active {
        display: flex;
    }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

.modal-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
}

    .modal-video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 9999; /* forces it above iframe */
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s ease;
}

    .modal-close:hover {
        background: rgba(255,255,255,0.25);
    }


/* ---------------------------------------------
   TRAILER MODAL
--------------------------------------------- */

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
}

    .modal.active {
        display: flex;
    }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

.modal-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
}

    .modal-video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}


/* ---------------------------------------------
   SECTIONS
--------------------------------------------- */

.section {
    padding: 1rem;
}

.section-light {
    background: var(--bg-lighter);
}

/*.container {
    max-width: 1100px;
    margin: 0 auto;
}*/

.section-title {
    font-family: var(--font-title);
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #ff7b00;
}

.section-text {
    color: var(--text-muted);
    line-height: 1.7;
}

/* CAST GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
}

    .card:hover {
        transform: translateY(-6px) rotate(-1deg);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .card img {
        height: 260px;
        object-fit: cover;
        border-radius: 16px 16px 0 0;
    }

.card-body {
    padding: 1rem;
}

.card-title {
    font-family: var(--font-title);
    margin: 0;
    color: #ff7b00;
    font-size: 1.2rem;
}

.card-role {
    color: #555;
    margin: 0.3rem 0 0;
}

/* ---------------------------------------------
   GALLERY — EXACT MOVIE STYLE (WORKING SCROLL)
--------------------------------------------- */

.gallery-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.2rem;
    overflow-x: scroll; /* force scroll bar */
    overflow-y: hidden;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #ff7b00 transparent; /* no black background */


}

    /* WebKit browsers (Chrome, Edge, Safari) */
   
    .gallery-strip::-webkit-scrollbar {
        height: 6px;
    }

    .gallery-strip::-webkit-scrollbar-track {
        background: transparent;
    }

    .gallery-strip::-webkit-scrollbar-thumb {
        background: rgba(255, 123, 0, 0.6);
        border-radius: 10px;
    }


/* Firefox */
.gallery-strip {
    scrollbar-width: thin;
    scrollbar-color: #ff7b00 transparent; /* no black background */
}


.gallery-item {
    flex: 0 0 auto;
    width: 360px;
    height: 200px;
    min-width: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.25s ease;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* ---------------------------------------------
   VIDEOS SECTION — EXACT MOVIE STYLE
--------------------------------------------- */

.video-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* LEFT SIDE THUMBNAILS */
.video-thumbs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 180px;
}

.video-thumb {
    width: 100%;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: 0.25s ease;
}

    .video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-thumb:hover {
        transform: translateY(-3px);
    }

    .video-thumb.active {
        border-color: #ff7b00;
        transform: translateY(-3px);
    }

/* MAIN VIDEO PLAYER */
.video-main {
    flex: 1;
    /*max-width: 900px;*/
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

    .video-main iframe {
        width: 100%;
        height: 500px;
        border: none;
        border-radius: 16px;
    }

/* MOBILE */
@media (max-width: 768px) {
    .video-layout {
        flex-direction: column;
    }

    .video-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }

    .video-thumb {
        flex: 0 0 150px;
        height: 90px;
    }

    .video-main iframe {
        height: 260px;
    }
}

/* ---------------------------------------------
   PRESS
--------------------------------------------- */

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.press-quote {
    background: #fff9f2;
    border-left: 6px solid #ff7b00;
    border-radius: 12px;
    padding: 1.5rem;
    font-size: 1rem;
}
.trailer-preview,
.trailer-preview img,
.play-overlay {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}
.nav-logo {
    text-decoration: none;
}
    .nav-logo,
    .nav-logo:hover,
    .nav-logo:focus {
        text-decoration: none;
    }
.nav-logo {
    color: #ff7b00;
    text-decoration: none;
}
/* ---------------------------------------------
   CONTACT
--------------------------------------------- */


.contact {
    /* padding: 130px 0;*/
}

    .contact .heading h2 {
        font-size: 30px;
        font-weight: 700;
        margin: 0;
        padding: 0;
    }

        .contact .heading h2 span {
            /* color: #ff9100;*/
        }

b
.contact .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #999999;
    margin: 20px 0 60px;
    padding: 0;
}

.contact .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom: 10px;
    /* background: #f9f9f9;*/
    border: 0;
    border-radius: 10px;
}

.contact button.btn {
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    background: #ff9100;
    color: #ffffff;
}

.contact .title h3 {
    font-size: 18px;
    font-weight: 600;
}

.contact .title p {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
    margin: 0 0 40px;
}

.contact .content .info {
    margin-top: 30px;
}

    .contact .content .info i {
        font-size: 30px;
        padding: 0;
        margin: 0;
        /*color: #02434b;*/
        margin-right: 20px;
        text-align: center;
        width: 20px;
    }

    .contact .content .info h4 {
        font-size: 13px;
        line-height: 1.4;
    }

        .contact .content .info h4 span {
            font-size: 13px;
            font-weight: 300;
            color: #999999;
        }
    /* CONTACT POPUP */
    .contact-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff7b00;
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 9999;
}

    .contact-popup.show {
        opacity: 1;
        transform: translateY(0);
    }
.video-container {
    position: relative;
    width: 100%;
    height: auto;
}

    .video-container video {
        width: 100%;
        height: auto;
        display: block;
    }
    .video-container.video-hidden video {
        opacity: 0;
        transition: opacity 0.4s ease;
    }

.video-center-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/*.video-center-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;*/ /* video stays clickable */
/*}*/

/* Main title */
.video-title {
    /*font-size: 3rem;*/
    /* font-size: clamp(1.4rem, 6vw, 3rem);*/
    font-weight: 700;
    color: #ff7b00;
    /* text-shadow: 0 0 20px rgba(0,0,0,0.7);*/
    margin: 0;
    font-family: 'Fredoka One', sans-serif;
    
    /* EXACT mobile behavior */
    font-size: clamp(1.4rem, 8vw, 3.5rem);
    line-height: 1.1;
}

/* Subtitle */
.video-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.4rem);
    /*font-size: 1.4rem;*/
    color: #ffe0c2;
    text-shadow: 0 0 15px rgba(0,0,0,0.6);
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 4vw, 1.4rem);
    line-height: 1.3;
}

/* POPUP OVERLAY */
.form-popup {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 99999;
}

/* POPUP BOX */
.form-popup-box {
    background: #ff7b00;
    padding: 20px 30px;
    border-radius: 12px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

/* ACTIVE STATE */
.form-popup.show {
    opacity: 1;
    pointer-events: auto;
}

    .form-popup.show .form-popup-box {
        transform: translateY(0);
    }
/* ERROR POPUP BOX */
.form-popup-box.error {
    background: #d62828; /* red */
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.footer {
    padding: 2rem 0;
    text-align: center; /* simplest fix */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers horizontally */
    justify-content: center;
    gap: 0.3rem; /* spacing between lines */
}
/*@media (max-width: 768px) {
    .video-title {
        font-size: 1rem;
    }

    .video-subtitle {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .video-subtitle {
        font-size: 0.5rem;
    }
}*/
