/* ======= VARIABLES ======= */
:root {
    --bg-dark: #000000;
    --bg-cream: #F5F3ED;
    --text-light: #FFFFFF;
    --text-dark: #000000;
    --text-gray: #A0A0A0;
    --primary-orange: #FF7300;
    --primary-orange-hover: #E56700;
    --font-family: 'Inter', sans-serif;
    
    --header-height: 72px;
}

/* ======= RESET & GLOBAL ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.desktop-only {
    display: flex !important;
}

.mobile-only {
    display: none !important;
}

/* ======= HEADER ======= */
.header {
    background-color: var(--bg-dark);
    height: var(--header-height);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 24px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--text-light);
    font-size: 14px;
}

.icon-btn {
    color: var(--text-light);
    font-size: 18px;
    padding: 8px;
}

.location-selector, .language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.location-selector i.fa-location-dot {
    font-size: 16px;
}

.Chevron {
    font-size: 10px;
}

.login-btn {
    background-color: var(--primary-orange);
    color: var(--text-light);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background-color: var(--primary-orange-hover);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

/* ======= HERO SECTION ======= */
.hero {
    position: relative;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.detail-item i {
    width: 16px;
    text-align: center;
}

.buy-ticket-btn {
    background-color: var(--primary-orange);
    color: var(--text-light);
    padding: 16px 48px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background-color 0.2s;
    width: auto;
    min-width: 250px;
}

.buy-ticket-btn:hover {
    background-color: var(--primary-orange-hover);
}

.hero-image-wrapper {
    flex: 0 0 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ======= INFO SECTIONS ======= */
.info-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.dates-content p {
    margin-bottom: 16px;
}

.view-previous-dates {
    text-decoration: underline;
    font-size: 14px;
}

.about-content {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #333;
}

/* ======= TICKER ======= */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
    color: var(--primary-orange);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticker {
    display: flex;
    width: fit-content;
    animation: ticker 40s linear infinite;
}

.ticker__item {
    white-space: nowrap;
    padding-right: 20px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ticker-icon {
    font-size: 14px;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ======= FOOTER ======= */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 40px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand-contact {
    flex: 1;
    min-width: 300px;
}

.footer-heading {
    color: var(--primary-orange);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.need-help {
    font-size: 14px;
    margin-bottom: 16px;
    color: #ccc;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col a {
    font-size: 13px;
    color: #ccc;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.download-col p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 16px;
}

.store-buttons {
    display: flex;
    gap: 16px;
}

.store-btn {
    font-size: 24px;
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    height: 20px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
}

.footer-languages {
    display: flex;
    gap: 16px;
}

.footer-languages a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
    text-decoration: none;
}

.footer-languages a.active {
    color: #fff;
}

.footer-languages img {
    width: 16px;
    border-radius: 50%;
    height: 16px;
    object-fit: cover;
    opacity: 0.5;
}

.footer-languages a.active img {
    opacity: 1;
}

.copyright {
    font-size: 11px;
    color: #666;
}

/* ======= MOBILE RESPONSIVE ======= */
@media (max-width: 900px) {
    .header-container {
        padding: 0 20px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .hero-content {
        flex-direction: column-reverse;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .buy-ticket-btn {
        width: 100%;
    }

    .info-section {
        padding: 40px 20px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-links-grid {
        gap: 40px;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-bottom-center, .footer-bottom-right {
        width: 100%;
    }
}
