:root {
    --primary-bg: #0a0a0a;
    --primary-text: #f3f4f6;
    --secondary-bg: #111111;
    --secondary-text: #9ca3af;
    --accent-pink: #ec4899;
    --accent-purple: #a855f7;
    --accent-silver: #e5e7eb;
    --font-main: 'Montserrat', sans-serif;
    --radius-xl: 1.5rem;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--primary-bg);
    color: var(--primary-text);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: inherit;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

button:active {
    transform: scale(0.96);
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    border-radius: var(--radius-xl);
}

.js-cookie-consent-overlay {
    backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    h3 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    p,
    span,
    li {
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .mobile-text-sm {
        font-size: 0.85rem !important;
    }
}

@media (min-width: 1024px) {
    section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* ===== header ===== */
#header {
    background-color: var(--secondary-bg);
}

.js-mobile-overlay {
    background-color: var(--primary-bg);
}

/* ===== hero_section ===== */
#hero {
    width: 100%;
    background-color: var(--primary-bg);
}

.hero-gradient-text {
    background: linear-gradient(to bottom right, var(--primary-text) 30%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== about_tour ===== */
.js-timeline-item.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== benefits_list ===== */
#benefits {
    scroll-margin-top: 80px;
}

.group:hover {
    transform: translateY(-4px);
}

/* ===== tour_gallery ===== */
#gallery {
    background-color: var(--primary-bg);
}

.js-gallery-item {
    transition: all 0.7s ease-out;
}

/* ===== order_steps ===== */
.js-step {
    will-change: transform, opacity;
}

/* ===== ticket_types ===== */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    }
}

.vip-highlight {
    animation: pulse-glow 3s infinite ease-in-out;
}

/* ===== faq_section ===== */
.collapse-title::after {
    color: var(--accent-pink) !important;
}

.collapse-plus .collapse-title::after {
    font-size: 1.2rem;
}

.js-faq-item {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.js-faq-item:hover {
    border-color: var(--accent-pink);
}

/* ===== footer ===== */
#footer {
    width: 100%;
}