:root {
    --primary_bg: #fff5f5;
    --primary_text: #2d0a0a;
    --accent_burgundy: #800020;
    --secondary_bg: #f9fafb;
    --footer_bg: #f3f4f6;
    --footer_text: #374151;
    --button_bg: #a52a2a;
    --button_text: #ffffff;
    --border_color: #e5e7eb;
    --gradient_burgundy: linear-gradient(135deg, #d80439 0%, #cc3232 100%);
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    background-color: var(--primary_bg);
    color: var(--primary_text);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    color: inherit;
    line-height: 1.2;
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover,
a:focus {
    opacity: 0.7;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

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

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

a:focus,
button:focus {
    outline: 2px solid var(--accent_burgundy);
    outline-offset: 2px;
}

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

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

    h3 {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }

    body {
        font-size: 0.95rem;
    }

    .break-mobile {
        word-break: break-all;
    }
}

/* ===== header_section ===== */
html {
    scroll-behavior: smooth;
}

#header {
    background-color: var(--primary_bg);
}

.js-mobile-menu {
    transition: all 0.3s ease-in-out;
}

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

.js-slide {
    width: 100%;
    height: 100%;
}

/* ===== about_celine ===== */
#about {
    width: 100%
}

.js-stat-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

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

/* ===== concert_dates ===== */
#schedule {
    scroll-margin-top: 2rem;
}

/* ===== why_attend ===== */
#benefits .js-benefit-item {
    transition-property: opacity, transform;
}

/* ===== ticket_categories ===== */
.js-ticket-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.js-ticket-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent_burgundy);
}

/* ===== concert_experience ===== */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto
}

#experience {
    scroll-margin-top: 2rem
}

/* ===== value_proposition ===== */
#value {
    background-color: var(--secondary_bg);
}

.js-value-item {
    transition: transform 0.3s ease;
}

.js-value-item:hover {
    transform: translateY(-5px);
}

/* ===== popular_dates ===== */
.js-analytics-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.js-analytics-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent_burgundy);
}

/* ===== faq_section ===== */
#faq {
    width: 100%
}

/* ===== footer ===== */
.footer-link-hover:hover {
    color: var(--accent_burgundy)
}