:root {
    --bg: #0b0b0f;
    /* deep, rich dark */
    --card: #12121a;
    --text: #e9e9f1;
    --muted: #a6a7b0;
    --primary: #f2c94c;
    /* warm gold */
    --neon: #b16cff;
    /* electric purple */
    --cyan: #4ad1ff;
    --hot: #ff4d6d;
    /* glow has been turned off, set to 0px */
    --glow: 0 0 0px rgba(178, 108, 255, .45), 0 0 0px rgba(74, 209, 255, .25);
}

html,
body {
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* --- Navbar Scroll Effect --- */
.navbar {
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    background-color: transparent;
    /* Starts transparent */
}

.navbar-scrolled {
    /* This uses your dark background color with 85% opacity */
    background-color: rgba(11, 11, 15, 0.85);
    /* This creates the nice blur effect behind the nav */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Adds a subtle border and shadow to separate it from the content */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.dd-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(1200px 600px at 20% 30%, rgba(177, 108, 255, .25), transparent 60%),
        radial-gradient(900px 500px at 80% 70%, rgba(74, 209, 255, .18), transparent 60%),
        radial-gradient(700px 400px at 50% 50%, rgba(255, 77, 109, .12), transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 14, .35), rgba(10, 10, 14, .9) 60%);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.dd-hero .logo-mark {
    width: 86px;
    height: 86px;
    border: 2px solid var(--primary);
    border-radius: 18px;
    display: grid;
    place-items: center;
    box-shadow: 0 0 30px rgba(242, 201, 76, .25);
}

.dd-hero h1 {
    font-family: Montserrat, Inter, sans-serif;
    font-weight: 800;
    letter-spacing: .5px;
    line-height: 1.1;
    text-shadow: 0 0 22px rgba(242, 201, 76, .18);
}

.hero-logo {
    width: 380px;
    /* Adjust size based on your preference */
}

.btn-neon {
    --c: var(--neon);
    color: #0b0b0f;
    background: var(--primary);
    border: none;
    font-weight: 700;
    letter-spacing: .3px;
    box-shadow: 0 8px 20px rgba(242, 201, 76, .25), inset 0 0 0 2px rgba(0, 0, 0, .08);
}

.btn-neon:hover {
    color: var(--primary);
    background: var(--bg);
}

.btn-neon-outline {
    color: var(--text);
    border: 2px solid var(--neon);
    background: transparent;
    font-weight: 700;
    box-shadow: var(--glow);
}

.btn-neon-outline:hover {
    color: var(--bg);
    background-color: var(--neon);
}

.nav-link {
    color: var(--muted) !important;
}

.nav-link.active,
.nav-link:hover {
    color: var(--text) !important;
}

.section {
    padding: 88px 0;
}

.section-title {
    font-family: Montserrat, Inter, sans-serif;
    font-weight: 800;
    letter-spacing: .4px;
}

.badge-soft {
    background: linear-gradient(90deg, rgba(177, 108, 255, .18), rgba(74, 209, 255, .18));
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .12);
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* Event card */
.event-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    overflow: hidden;
}

.event-img {
    height: 260px;
    object-fit: cover;
    width: 100%;
    filter: contrast(1.05) saturate(1.15) brightness(.9);
}

/* Pricing */
.price-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35), var(--glow);
}

.price {
    font-size: 44px;
    font-weight: 800;
    font-family: Montserrat;
}

.tag {
    color: #0b0b0f;
    background: var(--primary);
    padding: .25rem .6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .8rem;
}

/* Gallery placeholders */
.gallery img {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .0));
}

/* Subtle scroll effects */
[data-raise] {
    transform: translateY(18px);
    opacity: .0;
    transition: .6s ease;
}

.in-view {
    transform: none !important;
    opacity: 1 !important;
}

/* Small tweaks */
.tiny {
    font-size: .9rem;
    color: var(--muted);
}

/* --- Quantity Selector Styling --- */
.qty-wrapper {
    background: rgba(255, 255, 255, 0.05);
    /* Subtle dark background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    /* Pill shape */
    padding: 4px 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 0;
    padding-bottom: 4px;
    /* Optical adjustment to center the symbol */
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.qty-btn.plus-btn:hover {
    background: var(--primary);
    /* Gold background on hover */
    color: #000;
}

.qty-number {
    font-weight: 700;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    color: #fff;
}


/* Mobile responsive query below */
/* --- MOBILE OPTIMIZATION (Screens smaller than 768px) --- */
@media (max-width: 768px) {

    /* 1. Fix the Logo size so it fits on iPhones */
    .hero-logo {
        width: 260px;
        /* Smaller size for mobile */
        max-width: 80%;
        /* Never wider than the screen */
        margin-bottom: 20px;
    }

    /* 2. Shrink the Huge Headings */
    .display-4 {
        font-size: 2.5rem;
        /* Manageable size */
    }

    .dd-hero h1 {
        line-height: 1.2;
        /* Better spacing for wrapped text */
    }

    /* 3. Reduce Spacing (Less scrolling) */
    .section {
        padding: 50px 0;
        /* Reduced from 88px */
    }

    .dd-hero {
        padding-top: 80px;
        /* Space for navbar */
        min-height: auto;
        /* Allow height to adjust to content */
        padding-bottom: 60px;
    }

    /* 4. Make Buttons Finger-Friendly (Larger Touch Targets) */
    .qty-btn {
        width: 40px;
        /* Bigger buttons for fingers */
        height: 40px;
        font-size: 1.4rem;
    }

    .qty-wrapper {
        padding: 6px 10px;
        /* Bigger container */
    }

    /* 5. Navbar Mobile Background */
    /* When you open the menu on mobile, give it a dark background 
       so you can read the text over the hero image */
    .navbar-collapse {
        background: rgba(11, 11, 15, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-logo {
        width: 260px;
        /* Keep mobile size */
        max-width: 80%;
        margin-bottom: 30px;
        /* Space between logo and text */

        /* --- THESE LINES CENTER IT --- */
        display: block;
        /* Allows margin auto to work */
        margin-left: auto;
        margin-right: auto;
    }

    /* Center the Hero Text on Mobile */
    .dd-hero .col-lg-8 {
        text-align: center;
    }

    /* Center the Buttons on Mobile */
    .dd-hero .d-flex {
        justify-content: center;
    }
}