@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary-color: #d4af37;
    /* Metallic Gold */
    --accent-color: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.lang-switcher {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 25px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.lang-switcher a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-switcher a span {
    font-size: 1.2rem;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    color: var(--primary-color);
    transform: scale(1.05);
}


/* Header & Hero */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

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

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

/* Main Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
}

.section {
    margin-bottom: 4rem;
}

/* Grid for Info */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.card ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Date & Location Styling */
.event-meta {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.meta-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Specific Alerts/Notes */
.alert {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 10px 10px 0;
}

.alert p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-main);
}

/* Footer & Sales */
.sales-section {
    background: var(--bg-card);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin-top: 4rem;
}

.purchase-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.buy-button {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--primary-color);
}

.buy-button:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

footer {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .hero {
        height: auto;
    }

    .hero-image.desktop {
        display: none !important;
    }

    .hero-image.mobile {
        display: block !important;
    }

    .event-meta {
        gap: 1.5rem;
    }
}