:root {
    --primary-bg: #000000;
    --primary-text: #ffffff;
    --accent-bg: #ec4899;
    --accent-text: #000000;
    --secondary-text: #9ca3af;
    --card-bg: #111827;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #831843 100%);
    --font-main: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

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

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

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

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

    body {
        font-size: 0.95rem;
    }

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

@media (min-width: 769px) {
    h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 2rem;
    }
}

/* ===== header_section ===== */
#header {
    width: 100%;
    font-family: var(--font-main);
}

@media (max-width: 768px) {
    #header .container a[href="/"] img {
        height: 28px;
    }

    #header .container a[href="/"] span {
        font-size: 0.85rem;
        letter-spacing: 0.05em;
    }
}

.js-nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== hero_main ===== */
#hero {
    font-family: var(--font-main)
}

#hero .btn {
    text-transform: none
}

#hero img {
    width: 100%
}

/* ===== about_tour ===== */
.js-tour-pin {
    filter: drop-shadow(0 0 8px var(--accent-bg));
    animation: pinFloat 3s infinite ease-in-out;
}

@keyframes pinFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

/* ===== best_hits_list ===== */
#hits {
    width: 100%;
    font-family: var(--font-main);
}

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

.js-hit-card:hover {
    border-color: var(--accent-bg) !important;
    background-color: rgba(236, 72, 153, 0.05);
}

/* ===== tour_dates_table ===== */
#dates {
    position: relative;
    overflow: hidden;
}

.js-tour-row:hover {
    background-color: rgba(236, 72, 153, 0.1);
}

.table th,
.table td {
    white-space: nowrap;
}

@media (max-width: 640px) {

    .table th,
    .table td {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.875rem;
    }
}

/* ===== vip_packages_grid ===== */
#vip {
    width: 100%;
}

.card {
    transition: border-color 0.3s ease;
}

/* ===== concert_vibe ===== */
#atmosphere {
    scroll-margin-top: 80px;
}

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

/* ===== faq_accordion ===== */
#faq {
    font-family: var(--font-main);
    background: var(--gradient-primary);
}

.js-faq-item {
    transition: all 0.3s ease;
    border-color: rgba(255, 255, 255, 0.1);
}

.js-faq-item.is-active {
    border-color: var(--accent-bg);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.15);
}

/* ===== footer_section ===== */
#footer iframe {
    filter: grayscale(1) invert(0.9) contrast(1.2);
    transition: filter 0.3s ease;
}

#footer iframe:hover {
    filter: grayscale(0.5) invert(0) contrast(1);
}