:root {
    --primary-background: #000000;
    --primary-text: #FFFFFF;
    --accent-color-1: #8B0000;
    --accent-color-2: #FF007F;
    --secondary-text: #A0A0A0;
    --glassmorphism: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-background);
    color: var(--primary-text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

    h2 {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

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

    #cookieConsentBanner {
        width: calc(100% - 2rem) !important;
        max-width: 24rem !important;
        left: 50% !important;
        right: auto !important;
        bottom: 1rem !important;
        margin: 0 !important;
        transform: translateX(-50%) !important;
        border-radius: 0.75rem !important;
    }
}

@media (max-width: 640px) {
    .text-break-mobile {
        word-break: break-all;
        font-size: 0.9rem;
    }
}

/* ===== header ===== */
#header {
    background-color: var(--primary-background);
    border-bottom: 1px solid var(--glass-border)
}

.js-mobile-menu {
    background-color: var(--primary-background)
}

/* ===== hero_section ===== */
#hero {
    width: 100%;
    position: relative;
}

.neon-text {
    text-shadow: 0 0 15px var(--accent-color-2), 0 0 30px var(--accent-color-1);
}

.smoke-layer {
    background: radial-gradient(circle at 50% 120%, var(--accent-color-2), transparent 60%);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.js-hero-content {
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

/* ===== tour_dates ===== */
#tour-dates {
    width: 100%;
}

.js-tour-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
}

.js-tour-card:hover {
    border-color: var(--accent-color-2);
}

/* ===== experience_section ===== */
.js-fade-in {
    transition: opacity 1s ease-out, transform 1s ease-out;
    opacity: 0;
    transform: translateY(20px);
}

.js-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

#cookieConsentCustomize:hover,
#cookieConsentCustomize:focus-visible {
    background-color: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: var(--primary-text) !important;
}

@media (max-width: 767px) {
    .experience-feature-card {
        min-height: 420px;
    }

    .experience-feature-card>img {
        height: 100% !important;
    }
}

/* ===== gallery_strip ===== */
.scrollbar-hide::-webkit-scrollbar {
    display: none
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none
}

.js-gallery-scroll {
    scroll-behavior: smooth;
    webkit-overflow-scrolling: touch
}

/* ===== about_tour ===== */
#about {
    background: linear-gradient(180deg, var(--primary-background) 0%, #120000 50%, var(--primary-background) 100%);
}

#about h2 {
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* ===== final_visual ===== */
#final-visual {
    transition: opacity 1.2s ease-in-out;
}

#final-visual h2 {
    text-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 20px var(--accent-color-2);
    }
}

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

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

#footer iframe {
    filter: grayscale(100%) opacity(0.6);
}

#footer iframe:hover {
    filter: grayscale(0%) opacity(1);
}