:root {
    --main-background: #000000;
    --main-text: #FFFFFF;
    --secondary-background: #111111;
    --secondary-text: #C0C0C0;
    --accent-color: #8B0000;
    --accent-text: #FFFFFF;
    --silver: #C0C0C0;
    --fuchsia-accent: #FF00FF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--main-background);
    color: var(--main-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: filter 0.2s ease;
}

a:hover,
a:focus {
    text-decoration: none;
    filter: brightness(1.2);
}

button {
    cursor: pointer;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: filter 0.2s ease;
}

button:hover {
    filter: brightness(1.2);
}

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

ul,
ol {
    list-style: none;
}

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

    h2 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

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

    .mobile-text-small {
        font-size: 0.875rem;
        word-break: break-all;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        max-width: 1280px;
        margin: 0 auto;
    }
}

/* ===== header_section ===== */
header {
    transition: background-color 0.3s ease;
}

.js-mobile-menu {
    transition: opacity 0.3s ease;
}

/* ===== hero_section ===== */
#hero {
    padding: 50px 0;
    background-color: var(--main-background);
    font-family: sans-serif;
}

h1 {
    text-shadow: 4px 4px 0px rgba(139, 0, 0, 0.3);
}

.shadow-glow {
    box-shadow: 0 0 15px var(--fuchsia-accent);
}

/* ===== tour_timeline ===== */
.js-timeline-item {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.opacity-0 {
    opacity: 0;
}

.translate-y-10 {
    transform: translateY(2.5rem);
}

.opacity-100 {
    opacity: 1;
}

.translate-y-0 {
    transform: translateY(0);
}

/* ===== ticket_categories ===== */
.container {
    max-width: 1280px
}

#tickets {
    scroll-margin-top: 80px
}

/* ===== purchase_benefits ===== */
#benefits {
    width: 100%;
}

.ph {
    line-height: 1;
}

/* ===== tour_schedule ===== */
.schedule-table-container {
    width: 100%;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

/* ===== faq_section ===== */
#faq .js-faq-content {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#faq .js-faq-trigger:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

/* ===== final_call_to_action ===== */
#cta-final {
    width: 100%;
}

#cta-final h2 {
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
}

/* ===== footer_section ===== */
#footer {
    scroll-margin-top: 2rem;
}

#footer a {
    text-decoration: none;
}