/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --primary-color: #2c003e;
    /* Deep Purple */
    --secondary-color: #d4af37;
    /* Gold */
    --accent-color: #5e17eb;
    /* Lighter Purple */
    --text-color: #f0f0f0;
    --bg-color: #1a0b2e;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Vignette Effect: Radial Gradient from transparent center to dark edges */
    background: radial-gradient(circle at center, rgba(26, 11, 46, 0.2) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.95) 100%), url('../images/flyer.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px;
    box-shadow: inset 0 0 300px rgba(0, 0, 0, 1);
    /* Deepens the edge darkness */
}

.hero h1 {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9), 0 0 20px var(--secondary-color);
    margin-bottom: 0.5rem;
}

.hero h3 {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid var(--secondary-color);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), #f9d976);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Countdown */
.countdown {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px 40px;
    border-radius: 15px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.time-box {
    text-align: center;
}

.time-box span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px var(--secondary-color);
    font-family: 'Cinzel', serif;
}

.time-box label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 0;
}

/* Tickets Grid */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ticket-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ticket-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ticket-price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 1rem 0;
    font-family: 'Cinzel', serif;
}

.ticket-features {
    list-style: none;
    margin: 1.5rem 0;
    opacity: 0.8;
}

.ticket-features li {
    margin-bottom: 0.5rem;
}

/* Booking Form */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: var(--glass-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Footer */
footer {
    background: #0f0518;
    padding: 3rem 0;
    text-align: center;
    border-top: var(--glass-border);
    margin-top: 50px;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    margin: 0 10px;
    font-size: 1.2rem;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .countdown {
        gap: 1rem;
        padding: 10px;
    }

    .time-box span {
        font-size: 1.5rem;
    }
}