:root {
    --main-background: #050810;
    --main-text: #f8fafc;
    --secondary-background: #0f172a;
    --secondary-text: #94a3b8;
    --accent-color: #3b82f6;
    --accent-text: #ffffff;
    --status-available: #10b981;
    --status-sold-out: #ef4444;
    --status-almost-sold: #f59e0b;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--main-background);
    color: var(--main-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-heading);
    font-weight: 800;
    margin-top: 0;
    line-height: 1.2;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

input[type="checkbox"] {
    cursor: pointer;
}

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

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

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

    .mobile-break {
        word-break: break-all;
        font-size: 0.9rem;
    }
}

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

/* ===== header_section ===== */
.mobile-menu-overlay.d-flex {
    display: flex !important;
}

@media (max-width: 1023.98px) {
    .d-lg-flex {
        display: none !important;
    }

   

    .col-lg-4 {
        width: 50% !important;
    }
}

/* ===== hero_section ===== */
#hero.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 8, 16, 0.5) 0%, rgba(5, 8, 16, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.js-cta-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.js-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

/* ===== concert_schedule ===== */
#schedule .js-schedule-row {
    transition: background-color 0.3s ease;
}

#schedule .table-responsive::-webkit-scrollbar {
    height: 6px;
}

#schedule .table-responsive::-webkit-scrollbar-track {
    background: var(--main-background);
}

#schedule .table-responsive::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

#schedule .badge {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 110px;
}

/* ===== buying_guide ===== */
#guide .js-guide-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

#guide .js-guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color) !important;
}

/* ===== ticket_pricing ===== */
#pricing {
    width: 100%;
    background-color: var(--main-background);
}

.js-pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.js-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15) !important;
}

/* ===== venue_info ===== */
#venues .js-venue-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#venues .js-venue-card:hover {
    transform: translateY(-10px);
}

#venues img {
    transition: filter 0.4s ease;
}

#venues .js-venue-card:hover img {
    filter: brightness(1.1);
}

/* ===== tour_features ===== */
#benefits {
    width: 100%;
    background-color: var(--main-background);
    padding: 80px 0
}

.js-benefit-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease
}

.js-benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color) !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1)
}

/* ===== artist_bio ===== */
#about {
    width: 100%;
    overflow: hidden;
}

.bio-image-container {
    position: relative;
    z-index: 1;
}

.bio-image-container::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 1.5rem;
    z-index: -1;
}

.icon-box {
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-tracks .rounded {
    transition: all 0.3s ease-in-out;
    border-color: rgba(148, 163, 184, 0.2) !important;
}

.top-tracks .rounded:hover {
    border-color: var(--accent-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* ===== media_gallery ===== */
#media .js-video-placeholder:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

#media .js-video-placeholder i {
    transition: transform 0.3s ease;
}

#media img {
    transition: transform 0.5s ease;
}

#media img:hover {
    transform: scale(1.05);
}

/* ===== faq_section ===== */
#faq {
    background-color: var(--main-background);
    width: 100%
}

#faq .accordion {
    width: 100%
}

#faq .accordion-item {
    background-color: var(--secondary-background);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 12px;
    transition: border-color 0.3s ease;
    overflow: hidden
}

#faq .accordion-button {
    background-color: transparent;
    color: var(--main-text);
    padding: 1.5rem;
    font-size: 1.1rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between
}

#faq .accordion-button::after {
    display: none
}

#faq .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    box-shadow: none
}

#faq .accordion-button:focus {
    box-shadow: none
}

#faq .accordion-button i {
    transition: transform 0.3s ease;
    font-size: 1.5rem
}

#faq .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
    color: var(--accent-color) !important
}

#faq .accordion-body {
    color: var(--secondary-text);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6
}

/* ===== security_info ===== */
#safety {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.safety-card {
    background-color: var(--main-background);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.warning-alert {
    background-color: rgba(239, 68, 68, 0.08);
    border-left: 4px solid var(--status-sold-out);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 24px;
}

.map-wrapper {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0; 
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-text);
}

.safety-icon {
    color: var(--accent-color);
    font-size: 22px;
    margin-right: 14px;
    flex-shrink: 0;
}

/* ===== footer ===== */
#footer a {
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--accent-color) !important;
}
thead {
    background-color: var(--secondary-background) !important;
}
#cookieConsentBanner {
    z-index: 10 !important;
}
.modal-content {
    z-index: 1000;
}
@media (max-width:767px) {
    .new-l {
        flex-direction: column !important;
    }
    .new-l .col-lg-4 {
        width: 100% !important;
    }
}
