:root {
    --primary-bg: #3c3232;
    --secondary-bg: #001F3F;
    --accent-gold: #D4AF37;
    --accent-champagne: #F7E7CE;
    --text-main: #FFFFFF;
    --text-muted: #D1D5DB;
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    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;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

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

::selection {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
        word-wrap: break-word;
    }

    h2 {
        font-size: 1.875rem;
        word-wrap: break-word;
    }

    h3 {
        font-size: 1.5rem;
    }

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

    .break-long-words {
        word-break: break-all;
    }
}

.focus-visible:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ===== header_section ===== */
header {
    font-family: var(--font-body);
}

.logo-text {
    font-family: var(--font-headings);
}

.mobile-menu-overlay {
    transition: opacity 0.3s ease-in-out;
}

/* ===== hero_section ===== */
#hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.font-headings {
    font-family: var(--font-headings);
}

.font-body {
    font-family: var(--font-body);
}

.js-share-btn:hover i {
    color: var(--primary-bg) !important;
}

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

.font-headings {
    font-family: var(--font-headings);
}

.font-body {
    font-family: var(--font-body);
}

/* ===== tour_timeline ===== */
#timeline {
    width: 100%;
}

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

/* ===== concert_dates ===== */
#dates {
    scroll-margin-top: 80px;
}

.js-nearest-event {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

/* ===== featured_show ===== */
#next-show {
    width: 100%;
}

#next-show h2 {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ===== ticket_categories ===== */
.js-ticket-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== media_gallery ===== */
.w-full {
    width: 100%
}

.font-headings {
    font-family: var(--font-headings)
}

.font-body {
    font-family: var(--font-body)
}

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

.js-faq-item.active .js-faq-content {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

/* ===== contact_info ===== */
.js-map-frame {
    transition: filter 0.6s ease-in-out;
}

.js-map-frame:hover {
    filter: grayscale(0) contrast(1) invert(0) !important;
}

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

.js-lang-menu.hidden {
    display: none;
}

.js-lang-menu {
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}