:root {
    --primary-cyan: #00FFFF;
    --secondary-teal: #008080;
    --background-light: #F9FAFB;
    --text-main: #111827;
    --text-muted: #4B5563;
    --accent-red: #FF0000;
    --accent-black: #000000;
    --border-radius: 0.5rem;
    --transition-speed: 0.3s;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

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

ul,
ol {
    list-style: none;
}

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

:focus-visible {
    outline: 3px solid var(--primary-cyan);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        word-break: keep-all;
    }

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

    h3 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
    }

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

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

@media (min-width: 1024px) {
    body {
        font-size: 1rem;
    }
}

/* ===== header ===== */
#header {
    background-color: var(--accent-black);
}

.js-mobile-menu-overlay {
    background-color: var(--accent-black);
}

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

.js-scroll-link {
    cursor: pointer
}

/* ===== tour_details ===== */
#about {
    scroll-margin-top: 80px;
}

/* ===== artist_spotlight ===== */
.js-stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== tour_schedule ===== */
.js-city-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
}

/* ===== benefits ===== */
.js-benefit-card {
    will-change: transform, opacity
}

/* ===== visual_gallery ===== */
.js-visual-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-visual-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== fan_vibe ===== */
#experience {
    scroll-margin-top: 2rem;
}

.js-contact-link:hover {
    color: var(--primary-cyan) !important;
}
.new-hover .absolute {
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.1) 100%);
}
section {
    overflow: hidden;
}
@media (max-width:767px) {
    #header span {
        font-size: 16px !important;
    }
}