@charset "utf-8";

/* ====================================================
   CSS VARIABLES
   ==================================================== */
:root {
    --header-height: 80px;

    --lime:          #AACE2A;
    --lime-dark:     #8DB520;
    --lime-glow:     rgba(170, 206, 42, 0.18);

    --dark-1:        #0E1210;
    --dark-2:        #151B13;
    --dark-card:     #1B2219;
    --dark-card-2:   #212B1F;
    --dark-border:   rgba(170, 206, 42, 0.12);
    --dark-hr:       rgba(255, 255, 255, 0.07);

    --text-primary:  #E6F2D8;
    --text-body:     #A8BF98;
    --text-muted:    #6B8560;
}

/* ====================================================
   GLOBAL RESETS & BASE
   ==================================================== */
html {
    scroll-behavior: smooth;
}

section[id],
div[id] {
    scroll-margin-top: var(--header-height);
}

html,
body {
    max-width: none;
    background-color: var(--dark-1);
    color: var(--text-body);
}

video { display: block; }

img,
video,
picture {
    max-width: 100%;
    height: auto;
}

.animated,
img,
svg,
a,
i,
.fa-stack {
    transition: all 300ms ease 0s;
}

select { cursor: pointer; }

p { line-height: 1.7; }

.content *:last-child { margin-bottom: 0; }

/* ====================================================
   TYPOGRAPHY
   ==================================================== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.5rem; font-weight: 700; }

/* ====================================================
   BOOTSTRAP OVERRIDES — dark theme
   ==================================================== */
.bg-info   { background-color: var(--dark-2)    !important; }
.bg-dark   { background-color: var(--dark-1)    !important; }
.bg-white  { background-color: var(--dark-card) !important; }
.bg-secondary { background-color: var(--dark-card-2) !important; }

.text-muted { color: var(--text-muted) !important; }
.text-primary { color: var(--lime) !important; }

/* Buttons */
.btn-primary {
    background-color: var(--lime) !important;
    border-color: var(--lime) !important;
    color: var(--dark-1) !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--lime-dark) !important;
    border-color: var(--lime-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--lime-glow);
}

.btn-outline-light {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-outline-light:hover {
    border-color: var(--lime) !important;
    color: var(--lime) !important;
    background-color: transparent !important;
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 0.9rem !important;
    padding: 0.5rem 1.1rem !important;
}

/* Accordion */
.accordion-item {
    background-color: transparent !important;
    border-color: var(--dark-hr) !important;
    color: var(--text-body) !important;
}

.accordion-button {
    background-color: transparent !important;
    color: var(--text-primary) !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.accordion-button::after {
    filter: brightness(0) invert(0.7);
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
    color: var(--lime) !important;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(72%) sepia(66%) saturate(440%) hue-rotate(40deg);
}

.accordion-body {
    padding-top: 0;
    color: var(--text-body);
}

/* Shadow override */
.shadow {
    box-shadow: 0 0 0 1px var(--dark-border), 0 12px 40px rgba(0, 0, 0, 0.45) !important;
}

/* ====================================================
   NAVIGATION
   ==================================================== */
#page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-bottom 0.35s ease;
    border-bottom: 1px solid transparent;
}

#page-header.scrolled {
    background-color: rgba(14, 18, 16, 0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--dark-border);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 1.5rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.nav-logo:hover { opacity: 1; }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--lime); }

.nav-cta { flex-shrink: 0; }

/* ====================================================
   HERO
   ==================================================== */
#hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    position: relative;
}

#hero .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

#hero .item.left {
    align-items: flex-start;
    padding: 2rem 3rem 2rem clamp(2rem, 5vw, 5rem);
    background-color: var(--dark-1);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    flex: 0 0 48%;
}

#hero .item.left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -60px;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, var(--dark-1), transparent);
    pointer-events: none;
    z-index: 3;
}

#hero .item.right {
    overflow: hidden;
    flex: 1;
}

#hero .item.right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-logo {
    max-width: 160px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero-headline {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: clamp(2.8rem, 5.5vw, 5.5rem) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.01em !important;
    color: #fff !important;
    margin: 0 !important;
}

.hero-headline span {
    display: block;
    color: var(--lime);
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    margin: 0;
    max-width: 340px;
    line-height: 1.6;
}

/* ====================================================
   LOCATIONS
   ==================================================== */
.location-card {
    background-color: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
}

.location-card h3 {
    color: var(--text-primary);
}

.location-card > a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-card > a:hover { color: var(--lime); }

.location-card .content p { color: var(--text-body); }

.location-hr {
    border-color: var(--dark-hr);
    margin: 1.25rem 0;
}

.location-img {
    aspect-ratio: 1.8;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    display: block;
}

/* Prices box inside accordion */
.prices-box {
    background-color: var(--dark-card-2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
}

.prices-item .fw-semibold { color: var(--text-primary); }

/* ====================================================
   BOOKING / APP SECTION
   ==================================================== */
.store-image {
    max-height: 52px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.store-image:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.custom-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.custom-list-li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.custom-list-number-wrapper {
    background-color: var(--lime);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    color: var(--dark-1);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
}

.custom-list-text {
    margin-top: 5px;
    color: var(--text-body);
    line-height: 1.65;
}

/* ====================================================
   VALUE CARDS
   ==================================================== */
.value-card {
    background-color: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--lime);
    box-shadow: 0 20px 56px rgba(170, 206, 42, 0.1);
}

.value-card h4 {
    font-size: 2rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.value-card--featured {
    border-color: var(--lime);
    background-color: rgba(170, 206, 42, 0.04);
}

.value-discount {
    color: var(--lime);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.value-price {
    color: var(--lime);
    font-weight: 600;
    margin-bottom: 0;
}

.value-card-app-note {
    color: var(--lime);
    margin-top: 0.5rem;
}

/* ====================================================
   FAQ ACCORDION
   ==================================================== */
.faq-accordion .accordion-item {
    background-color: var(--dark-card) !important;
    border: 1px solid var(--dark-border) !important;
    border-radius: 10px !important;
    margin-bottom: 8px;
    padding: 0.4rem 1rem;
}

/* ====================================================
   VIDEO
   ==================================================== */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    margin-top: 1.5rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ====================================================
   PARTNERS
   ==================================================== */
.partner-box {
    background-color: var(--dark-card) !important;
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 1.5rem !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 100px;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.partner-box:hover {
    transform: translateY(-5px);
    border-color: var(--lime);
    box-shadow: 0 12px 36px rgba(170, 206, 42, 0.1);
}

.partner-logo {
    max-height: 44px;
    max-width: 120px;
    width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.22s ease;
}

.partner-box:hover .partner-logo { opacity: 1; }

/* ====================================================
   FOOTER
   ==================================================== */
footer {
    background-color: #080B07 !important;
    color: var(--text-muted);
    border-top: 1px solid var(--dark-border);
}

footer p { color: var(--text-muted); margin-bottom: 0.4rem; }

.footer-logo {
    height: 36px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    display: block;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem !important;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover { color: var(--lime); }

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--dark-border);
    color: var(--text-muted) !important;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.social-link:hover {
    border-color: var(--lime);
    color: var(--lime) !important;
    background-color: var(--lime-glow);
}

.footer-hr {
    border-color: var(--dark-hr);
    margin: 2rem 0 1.25rem;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
    opacity: 0.6;
    margin: 0;
}

/* ====================================================
   SECTION SPACING & HEADINGS
   ==================================================== */
section > .container > .row.justify-content-center > [class*="col"] > h2 {
    /* first heading in centered intro rows */
}

/* ====================================================
   MEDIA QUERIES
   ==================================================== */
@media (max-width: 991px) {
    #hero {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    #hero .item.left {
        flex: none;
        padding: 7rem 2rem 3rem;
        align-items: center;
        text-align: center;
    }

    #hero .item.left::after { display: none; }

    .hero-tagline {
        max-width: 420px;
        text-align: center;
    }

    .hero-headline {
        text-align: center;
    }

    #hero .item.right {
        flex: none;
        height: 55vw;
        min-height: 280px;
    }

    .nav-links { display: none; }
    .nav-cta { display: none; }
}

@media (min-width: 768px) {
    .dropdown:hover .dropdown-menu { display: block; }
    .dropdown > .dropdown-toggle:active { pointer-events: none; }
}

@media (min-width: 992px) {}
@media (min-width: 1200px) {}
@media (min-width: 1540px) {}
