html {
    scroll-behavior: smooth;
}



html, body {
    max-width: 100%;
    height:100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color:#000;
}


/* --- 1. GLOBAL SETTINGS & RESET --- */
:root {
    --gold: #c5a059;
    --dark: #111111;
    --gunmetal: #1a1a1a;
    --grey-text: #aaaaaa;
    --white: #ffffff;
}

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



body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 100px; /* navbar height */
    position:relative;
    z-index:1;
}





.spacer-reveal-top {
    position: relative;
    width: 100%;
    min-height: 5vh; /* Gives it vertical presence */
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 20px 20px;
    box-sizing: border-box;
    text-align: center;
}
.spacer-reveal {
    position: relative;
    width: 100%;
    min-height: 20vh; /* Gives it vertical presence */
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 60px 20px;
    box-sizing: border-box;
    text-align: center;
}
.subtitle {
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.75rem;
    font-weight: 700;
}
.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
}




.site-header {
    overflow: visible;   /* IMPORTANT */
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.nav-top-bar {
    background: #000;
    color: var(--gold);
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 10px 0;
    text-transform: uppercase;
    border-bottom: 1px solid #222;
}
.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.navbar {
     background: #000;
    width: 100%;

}
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a {
    text-decoration: none;
    color: #bbb;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
}

.tagline {
    font-size: 12px;
    letter-spacing: 1px;
    color: #aaa;
    text-transform: uppercase;
    margin-top: 4px;
}





.premium-footer {
    background: #000; /* Deep black to finish the page */
    color: var(--white);
    padding: 100px 20px 40px;
    border-top: 1px solid #222;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 60px;
    text-align: left; /* Headers and text align left within columns */
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-nav h4, .footer-contact h4 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-nav a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: var(--gold);
    padding-left: 5px; /* Subtle interaction */
}

.footer-contact p {
    color: #bbb;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.social-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-row a {
    color: #fff;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-row a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-legal {
    max-width: 1200px;
    margin: 80px auto 0;
    padding-top: 30px;
    border-top: 1px solid #111;
    text-align: center; /* Centered copyright */
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #444;
    text-transform: uppercase;
}

.card {
    background: #111;
    border-radius: 20px 10px 25px 15px; /* top-left, top-right, bottom-right, bottom-left */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Image styling */
.card .image-container img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 200px;
    border-top-left-radius: 20px;
    border-top-right-radius: 10px; /* matches card */
}

/* Card content */
.card-content {
    padding: 15px 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}




/* Site background */
.site-bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;

    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
        url('../assets/images/hero/mainbackground.webp');

    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    will-change: transform;
    transform: translateZ(0);
}


/* Main container for policy/terms pages */
.legal-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
    
    background: rgba(0, 0, 0, 0.75); /* dark glass effect */
    backdrop-filter: blur(10px);
    
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    
    color: #ddd;
}

/* Headings */
.legal-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.legal-container h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #f5f5f5;
}

/* Paragraphs */
.legal-container p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Lists */
.legal-container ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-container li {
    margin-bottom: 8px;
}

/* Contact section spacing */
.legal-container p strong {
    color: #fff;
}
/* ðŸ“± Mobile Optimization */
@media (max-width: 768px) {

    /* â”€â”€ FORCE MOBILE NAV OVERLAY â”€â”€ */
    /* Overrides the global .nav-links { display: flex } above */
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;

        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;

        background:
            linear-gradient(rgba(0,0,0,0.92), rgba(0,0,0,0.97)),
            url('/assets/images/menu-safari-bg.webp') center/cover no-repeat !important;

        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: scale(1.06) !important;
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s !important;

        padding: 40px 20px !important;
        z-index: 10000 !important;
        list-style: none !important;
        margin: 0 !important;
    }

    .nav-links.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: scale(1) !important;
    }

    .nav-links li {
        width: 85% !important;
        max-width: 340px !important;
        margin: 10px 0 !important;
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.35s ease, transform 0.35s ease;
        list-style: none !important;
    }

    .nav-links.active li {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .nav-links li a {
        display: block !important;
        width: 100% !important;
        padding: 18px 25px !important;
        text-align: center !important;
        font-family: 'Playfair Display', serif !important;
        font-size: 0.85rem !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        color: rgba(255,255,255,0.88) !important;
        border-radius: 12px !important;
        background: rgba(255,255,255,0.03) !important;
        border: 1px solid rgba(255,255,255,0.07) !important;
        transition: all 0.25s ease !important;
    }

    .nav-links li a:hover {
        color: #D4AF37 !important;
        background: rgba(212,175,55,0.08) !important;
        border-color: rgba(212,175,55,0.35) !important;
        transform: translateY(-2px) !important;
    }

    /* Show hamburger â€” ensure above overlay */
    .menu-toggle {
        display: flex !important;
        position: relative !important;
        z-index: 10002 !important;
        flex-shrink: 0 !important;
    }

    .legal-container {
        margin: 20px 15px;
        padding: 20px;
        border-radius: 10px;
    }

    .legal-container h1 { font-size: 26px; line-height: 1.3; }
    .legal-container h2 { font-size: 18px; margin-top: 20px; }
    .legal-container p  { font-size: 14px; line-height: 1.7; }
    .legal-container ul { padding-left: 18px; }
    .legal-container li { font-size: 14px; }
}


/* ===== HEADER ===== */
.site-header {
    position: relative;
    overflow: visible;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Top nav bar */
.nav-top-bar {
    background: #000;
    color: var(--gold);
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 10px 0;
    text-transform: uppercase;
    border-bottom: 1px solid #222;
}

/* Main navbar */
.navbar {
    background: #000;
    width: 100%;
    padding: 14px 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
}
.logo span { color: var(--gold); }
.tagline {
    font-size: 12px;
    letter-spacing: 1px;
    color: #aaa;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Nav links — desktop */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    color: #bbb;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* Hamburger — HIDDEN on desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
    padding: 0;
}
.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}
.menu-toggle.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {

    /* Ensure navbar doesn't clip the hamburger */
    .navbar {
        padding: 12px 16px;
        overflow: visible;
    }

    .nav-container {
        overflow: visible;
        padding: 0;
    }

    /* Show hamburger on mobile — above the overlay */
    .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 10002;
        width: 36px;
        height: 26px;
        padding: 2px;
        flex-shrink: 0;
    }

    /* Full-screen dark cinematic overlay */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0 !important;

        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;

        background:
            linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.97)),
            url('/assets/images/menu-safari-bg.webp') center/cover no-repeat;

        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: scale(1.06);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;

        padding: 40px 20px;
        z-index: 10000;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1);
    }

    /* Menu items */
    .nav-links li {
        list-style: none;
        width: 85%;
        max-width: 340px;
        margin: 10px 0;
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .nav-links.active li { opacity: 1; transform: translateY(0); }

    /* Card-style links */
    .nav-links li a {
        display: block;
        width: 100%;
        padding: 18px 25px;
        text-align: center;
        text-decoration: none;
        font-family: 'Playfair Display', serif;
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.85);
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        transition: all 0.25s ease;
    }
    .nav-links li a:hover {
        color: var(--gold);
        background: rgba(212,175,55,0.08);
        border-color: rgba(212,175,55,0.35);
        transform: translateY(-2px);
    }
    .nav-links li a:active { transform: scale(0.97); }

    /* Logo shrink on mobile */
    .logo { font-size: 1.4rem; }
    .tagline { display: none; }
}

/* ===== CURRENCY DROPDOWN ===== */
:root {
    --white: #fff;
    --gold: #c5a059;
    --dropdown-bg: rgba(20,20,28,0.95);
    --border-light: rgba(255,255,255,0.08);
}

.currency-dropdown {
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    z-index: 9999;
}

.currency-button {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 100px;
    background: rgba(20,20,26,0.85);
    color: var(--white);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 9px 16px;
    border: 1px solid var(--border-light);
    border-radius: 40px;
    cursor: pointer;
    outline: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    border-bottom: 1px solid rgba(197,160,89,0.3);
}
.currency-button:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(197,160,89,0.25);
}
.currency-button .arrow {
    font-size: 0.7rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    margin-left: auto;
}
.currency-dropdown.open .arrow { transform: rotate(180deg); }

.currency-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 160px;
    background: var(--dropdown-bg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(197,160,89,0.2);
    border-radius: 16px;
    padding: 6px 0;
    list-style: none;
    margin: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.28s ease, visibility 0.22s;
    z-index: 10000;
}
.currency-dropdown.open .currency-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.currency-menu li {
    padding: 11px 18px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.currency-menu li:hover {
    background: rgba(197,160,89,0.1);
    border-left-color: var(--gold);
    color: var(--white);
    padding-left: 22px;
}
.currency-menu li.selected {
    color: var(--gold);
    background: rgba(197,160,89,0.07);
    border-left-color: var(--gold);
}
.currency-menu li.selected::after { content: "✓"; color: var(--gold); font-weight: 700; }

.hidden-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Always show custom dropdown, always hide native select */
.currency-dropdown .currency-button { display: flex; }
.currency-dropdown .currency-menu   { display: block; visibility: hidden; } /* menu shown/hidden via .open class */

@media (max-width: 768px) {
    .currency-button { font-size: 0.9rem; padding: 10px 16px; }
}


.premium-footer {
    background: #000;
    color: var(--white);
    padding: 100px 20px 40px;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.8;
}

/* All column headings — Navigation, Legal, Connect */
.footer-nav h4,
.footer-links h4,
.footer-contact h4 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 25px;
    color: var(--gold);
}

/* Navigation links */
.footer-nav a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.8rem;
    transition: 0.3s;
}
.footer-nav a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Legal links — stacked vertically, no blue */
.footer-links a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.8rem;
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: #bbb;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.social-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-row a {
    color: #fff;
    font-size: 1.1rem;
    transition: 0.3s;
}
.social-row a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-legal {
    max-width: 1200px;
    margin: 80px auto 0;
    padding-top: 30px;
    border-top: 1px solid #111;
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #444;
    text-transform: uppercase;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .footer-brand,
    .footer-nav,
    .footer-links,
    .footer-contact {
        width: 100%;
        text-align: center !important;
    }

    .social-row {
        justify-content: center !important;
    }

    .footer-nav a:hover,
    .footer-links a:hover {
        padding-left: 0;
    }
}


@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
        position: relative !important;
        z-index: 10002 !important;
        flex-shrink: 0 !important;
    }
}