/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   Hero Section
========================= */
.hero-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffdd00;
    text-shadow: 2px 2px 4px #000;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.hero-content .cta-btn {
    background-color: #ffdd00;
    color: #222;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.hero-content .cta-btn:hover {
    background-color: #ffb800;
    transform: translateY(-2px);
}

/* =========================
   Info Cards
========================= */
.info-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto;
    gap: 20px;
    padding: 0 20px;
}

.card {
    background-color: #222;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    flex: 1 1 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffdd00;
}

.card p {
    font-size: 1rem;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* =========================
   Ticket Form Section
========================= */
.ticket-form-section {
    background-color: #2a3c4d;
    padding: 60px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #222;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffdd00;
}

.tickets-available {
    text-align: center;
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #ff4c00;
}

.tickets-available span {
    font-size: 1.4rem;
}

/* =========================
   Form Inputs
========================= */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 6px;
    display: block;
    color: #ffdd00;
}

.form-declaration {
    margin-bottom: 8px;
    display: flex;
    font-weight: 600;
    color: #9b9b9b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffdd00;
    box-shadow: 0 0 8px rgba(255,221,0,0.6);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* =========================
   Submit Button
========================= */
.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #ffdd00;
    color: #222;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #ffb800;
    transform: translateY(-2px);
}

/* =========================
   Sold Out Message
========================= */
.sold-out-message {
    text-align: center;
    padding: 40px;
    background-color: #222;
    color: #ff4c00;
    border-radius: 12px;
}

.sold-out-message h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.sold-out-message p {
    font-size: 1.1rem;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .info-cards {
        flex-direction: column;
        gap: 15px;
    }
}
