/* ============================================================
   GOOD PATH ENTERTAINMENT — style.css
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --brand-yellow:      rgba(253, 181, 21, 1.0);
    --dark-charcoal:     rgba(20, 22, 19, 1.0);
    --charcoal:          rgba(26, 24, 22, 1.0);
    --light-charcoal:    rgba(29, 26, 23, 1.0);
    --text-white:        #FFFFFF;
    --text-offwhite:     rgba(250, 250, 250, 1.0);
    --text-light:        #ECE1CC;
    --text-light-medium: #A19890;
    --text-medium:       #7C7269;
    --text-dark:         #665F5A;
    --black:             #000000;
    --white:             #FFFFFF;

    --font-primary:   'Barlow', sans-serif;
    --font-secondary: 'Big Shoulders', sans-serif;

    --content-pad: 30px;
    --subcontent-pad: 20%;
    --nav-height:  50px;
    --nav-top:     25px;
}

/* ── Scrollbar ────────────────────────────────────────────── */

/* Firefox */
html {
    scrollbar-color: var(--text-dark) var(--charcoal);
    scrollbar-width: thin;
}

/* Chrome / Safari / Edge */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-charcoal);
}

::-webkit-scrollbar-thumb {
    background-color: var(--text-dark);
    border-radius: 4px;
    border: 2px solid var(--dark-charcoal);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-medium);
}

/* ── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    background-color: var(--dark-charcoal);
    color: var(--text-offwhite);
    overflow-x: hidden;
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }




/* ════════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════════ */
#site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--nav-height) + var(--nav-top));
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--nav-top) var(--content-pad) 0;
    padding-bottom: 15px;
    background: transparent;
}

.nav-logo img {
    width: 160px;
    height: 50px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

/* Nav scrolled state — blur background after 500px */
#site-nav.scrolled {
    background: rgba(26, 24, 22, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

/* Burger button */
.nav-burger {
    width: 42px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 2px 0;
}


.nav-burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Burger open → X */
.nav-burger.open span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
    opacity: 0;
}
.nav-burger.open span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}

/* ── Nav overlay menu ───────────────────────────────────── */
#nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--dark-charcoal);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

#nav-overlay.open {
    opacity: 0.98;
    pointer-events: all;
}

#nav-overlay nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

#nav-overlay nav a {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: -0.75;
    transition: color 0.2s ease;
}

#nav-overlay nav a:hover {
    color: var(--brand-yellow);
}

/* brand text override */

.brand-text {
    color: var(--brand-yellow) !important;
}


/* ════════════════════════════════════════════════════════════
   HERO SLIDER
   Right-to-left continuous slide transition.
   All slides sit side by side in .hero-track.
   JS translates the track leftward per slide.
════════════════════════════════════════════════════════════ */
#hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 500px;
    overflow: hidden;
    background: var(--black);
}

.hero-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    /* width set inline via PHP: slide_count * 100vw */
    will-change: transform;
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1);
}

.hero-slide {
    position: relative;
    flex-shrink: 0;
    width: 100vw;
    height: 100%;
    overflow: hidden;
}

/* Slide background image */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slide background video (local file) */
.hero-slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* External video iframe wrapper — oversized to hide letterboxing */
.hero-iframe-wrap {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    pointer-events: none;
}

.hero-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Per-slide color overlay — color and opacity set inline from DB */
.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Slide text content — bottom left, 30px from bottom, max 500px */
.hero-content {
    position: absolute;
    bottom: 30px;
    left: var(--content-pad);
    max-width: 500px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 56px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
    line-height: 0.95;
    letter-spacing: -0.9px;
    margin-bottom: 28px;
    /* No escaping — allows admin <span> tags for color overrides */
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-offwhite);
    line-height: 1.2;
    margin-bottom: 28px;
    text-transform: uppercase;
    /* No escaping — allows admin <span> tags */
}

/* Hero CTA button — 160×50px default */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 50px;
    background: var(--brand-yellow);
    color: var(--charcoal);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.hero-btn:hover {
    opacity: 0.88;
}

/* Slide indicators — centered, 30px from bottom */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    right: 0;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-dot.active {
    background: var(--white);
}

/* ════════════════════════════════════════════════════════════
   BRAND SEPARATOR
════════════════════════════════════════════════════════════ */
#separator {
    position: relative;    /* needed for absolute cs-label */
    width: 100%;
    background: var(--brand-yellow);
    margin-top: 10px;
    padding-top: 36px;
}

/* ════════════════════════════════════════════════════════════
   SECTION BUTTONS
════════════════════════════════════════════════════════════ */

.section-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 285px;
    height: 60px;
    background: var(--brand-yellow);
    color: var(--charcoal);
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 500;
    border-radius: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
    margin: 0 auto;
}

.section-button:hover { opacity: 90% }

.disabled-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 285px;
    height: 60px;
    background: var(--light-charcoal);
    color: rgba(15, 15, 15, 1.0);
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 500;
    border-radius: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
    margin: 0 auto;
}



/* ════════════════════════════════════════════════════════════
   COMING SOON SECTION
════════════════════════════════════════════════════════════ */
#upcoming {
    position: relative;    /* needed for absolute cs-label  var(--content-pad)*/
    width: 100%;
    padding: 0 ;
    align-content: center;
    padding-top: 140px;
    padding-bottom: 150px;
}

.uc-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
   /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    width: 100%;*/
}

.uc-item-content-wrapper {
    /*flex: 0 0 calc(50% - 5px);*/
    display: flex;
    flex-direction: column;
    margin: 0;
    margin-bottom: 80px;

}

.uc-content-statusbar {
    justify-content: flex-start;
}

.uc-content-image {
    display: block;
    width: 100%;
    height: 475px;
    overflow: hidden;
    margin: 15px 0;
}

.uc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter 0.2s ease;
}

.uc-image:hover { filter: grayscale(10%) brightness(0.90); } /*hue-rotate(5deg) saturate(300%) sepia(0%) */

.uc-content-titlebar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.uc-titletext {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-white);
    line-height: 1;
    transition: 0.2s ease;
    padding: 0 10px;
}

.uc-titletext:hover { color: var(--brand-yellow); }

.uc-genretext, .uc-statustext{
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--text-medium);
    line-height: 1;
    padding: 0 10px;
}

.uc-nonitem-container {
    display: flex;
    flex-wrap: column;
    justify-content: center;
}

/* ════════════════════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════════════════════ */
#about {
    position: relative;    /* needed for absolute cs-label */
    width: 100%;
    padding: 150px 150px;
    background: var(--charcoal);
}

.agp-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.agp-text {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.5;
    letter-spacing: -0.9;
    text-align: center;
}

.agp-button {
    margin-top: 75px;
}



/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */

.horizontal-line {
    border: none;
    border-top: 2px solid rgba(41, 38, 35, 1.0);
    max-width: 75%;
    margin: 0 auto;
}


#footer {
    position: relative;
    width: 100%;
}

/* two-column grid with column gap */
.f-container {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 15px;
    margin: 50px 15%;
}


.f-box-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* social */

.f-social-row {
    margin-bottom: 15px;
}

.f-social {
    display: flex;
    align-items: center;
    gap: 28px;
}

.f-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-yellow);
    font-size: 34px;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.f-social-link:hover {
    color: var(--text-white);
}

/* Row 4: Copyright */
.f-copyright {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 400;
    width: 100%;
    color: var(--text-medium);
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: center;
}

/* Row 5: Legal links */
.f-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.f-legal-link {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 400;
    color: var(--brand-yellow);
    transition: color 0.2s ease;
}

.f-legal-link:hover {
    color: var(--text-white);
}

.f-legal-sep {
    font-size: 14px;
    color: var(--text-medium);
}

/* ── BOTTOM QUOTE ── */

.f-quote-container {
    width: 100%;
    padding: 30px 0;
    text-align: center;

}

.f-quote {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 8px;
    text-align: center;
}

.f-quote-attr {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    color: var(--text-dark);
}



/* ════════════════════════════════════════════════════════════
   404 NOT FOUND MODAL
════════════════════════════════════════════════════════════ */
.nf-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.nf-modal.show {
    display: flex;
}

.nf-box {
    position: relative;
    background: var(--light-charcoal);
    padding: 52px 44px 44px;
    max-width: 460px;
    width: calc(100% - 60px);
    text-align: center;
}

.nf-box h2 {
    font-family: var(--font-secondary);
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 16px;
}

.nf-box h2 span {
    color: var(--brand-yellow);
}

.nf-box p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-offwhite);
    line-height: 1.6;
    margin-bottom: 32px;
}

.nf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 50px;
    background: var(--brand-yellow);
    color: var(--charcoal);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.nf-btn:hover {
    opacity: 0.88;
}

.nf-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 22px;
    line-height: 1;
    color: var(--text-medium);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nf-close:hover {
    color: var(--text-white);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (768px–1024px)
════════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Hero — slightly smaller title */
    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    #upcoming, #about, #footer {
        padding: 75px 40px;

    }

    .uc-container {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
    }

    .uc-item-content-wrapper {
        display: flex;
        flex-direction: column;
        margin: 0;
        margin-bottom: 80px;

    }

    .f-container, sf-container {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
    .f-box-left, .f-box-center, .f-box-right {
        align-items: center;
        text-align: center;
    }

    .f-nav {
        align-items: center;
    }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 767px)
════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

    /* Nav — always full width */
    #site-nav {
        width: 100%;
    }

    #nav-overlay nav a {
        font-size: 36px;
    }

    /* Hero content — constrain width, allow it to breathe */
    .hero-content {
        max-width: calc(100% - 60px);
    }

    /* Hero — smaller fonts on mobile */
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    #upcoming, #about, #footer {
        padding: 75px 20px;
    }

    .uc-container {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
    }

    .uc-item-content-wrapper {
        display: flex;
        flex-direction: column;
        margin: 0;
        margin-bottom: 80px;

    }

    .uc-content-image {
        height: 225px;
    }


    .agp-text {
        font-size: 24px;
        line-height: 1.3;
    }
    .f-container, sf-container {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 0;
    }

    .f-box-left, .f-box-center, .f-box-right {
        align-items: center;
        text-align: center;
    }
    .f-quote {
        margin: 15px 0;
    }
    .f-copyright {
        margin: 15px 0;
    }
    .f-nav {
        align-items: center;
    }

}
