:root {
    --primary-background: #0a0a0a;
    --primary-text: #ffffff;
    --secondary-background: #1a1a1a;
    --secondary-text: #a0a0a0;
    --accent-color: #ff3e3e;
    --accent-text: #ffffff;
    --card-background: #121212;
    --border-color: #333333;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-background);
    color: var(--primary-text);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

button:hover {
    opacity: 0.9;
}

ul,
ol {
    list-style: none;
}

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

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

@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.2rem, 5vw, 1.6rem);
    }

    h4,
    h5,
    h6 {
        font-size: 1rem;
    }

    body {
        font-size: 0.95rem;
    }

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

@media (max-width: 640px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

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

/* ===== header_main ===== */
.js-mobile-menu {
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.btn {
    transition: all 0.2s ease-in-out;
}

/* ===== hero_section ===== */
#hero {
    background-image:url("photos/pics/bad-bunny-tour-hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%
}

.hero-overlay-layer {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%
}

.js-tile {
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.7s ease, transform 0.7s ease
}

.js-tile:hover {
    transform: scale(1.05);
    background-color: var(--secondary-background) !important;
    border-color: var(--accent-color) !important
}

/* ===== about_tour_info ===== */
#about-tour {
    width: 100%;
    position: relative;
}

#about-tour .bi {
    display: inline-flex;
}

/* ===== spain_schedule ===== */
#schedule {
    width: 100%;
}

.js-ticket-btn {
    transition: transform 0.2s ease-in-out;
}

.js-ticket-btn:active {
    transform: scale(0.95);
}

/* ===== artist_bio ===== */
#artist .animate-fade-in-left {
    animation: fadeInLeft 1.2s ease-out forwards;
}

#artist .animate-fade-in-right {
    animation: fadeInRight 1.2s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

/* ===== musical_style ===== */
#style {
    background-color: var(--primary-background);
}

.js-style-card {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
}

/* ===== venue_info ===== */
#locations .venue-map-container iframe {
    filter: grayscale(1) invert(0.92) contrast(0.85);
    border: 0;
}

#locations .w-full {
    width: 100% !important;
}

/* ===== tour_status ===== */
#status {
    width: 100%;
}

#status .js-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

#status .js-card:hover {
    transform: translateY(-5px);
}

/* ===== visual_experience ===== */
.js-reveal {
    transition: all 1s ease-out;
}

.opacity-0 {
    opacity: 0;
}

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

.opacity-100 {
    opacity: 1;
}

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

/* ===== faq_accordion ===== */
.active-faq {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 15px rgba(255, 62, 62, 0.1);
}

.collapse-title:after {
    color: var(--accent-color) !important;
}

/* ===== footer_main ===== */
#footer {
    width: 100%
}