/* ============================================
   Club Nova Tickets - Main Stylesheet
   ============================================ */

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

/* ============================================
   Body & Layout
   ============================================ */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-3 {
    margin-bottom: 15px !important;
}

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

.flyer-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* ============================================
   Flyer Image Section
   ============================================ */

.flyer-image-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 20px;
}

.flyer-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Booking Card
   ============================================ */

.booking-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-title {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-align: center;
}

.booking-subtitle {
    text-align: center;
    font-size: 13px;
    color: #b8a87f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* ============================================
   Messages
   ============================================ */

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    display: none;
    font-size: 13px;
    border: 1px solid #c3e6cb;
}

.error-message {
    color: #dc3545;
    font-size: 11px;
    margin-top: 4px;
    display: none;
    font-weight: 600;
}

/* ============================================
   Event Information
   ============================================ */

.event-quick-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
 
}

.info-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid #d4af37;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
}

.info-label {
    font-size: 10px;
    color: #b8a87f;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.info-value {
    font-size: 14px;
    font-weight: 700;
    color: #d4af37;
    display: block;
}

.tickets-available {
    background: linear-gradient(135deg, #d4af37 0%, #c19b2e 100%);
    color: #1a1a2e;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.available-count {
    font-size: 28px;
    display: block;
    margin-bottom: 4px;
}

/* ============================================
   Form Elements
   ============================================ */

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 11px;
    border: 2px solid #e0d5c7;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: #fffaf5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

/* ============================================
   Quantity Control
   ============================================ */

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #d4af37;
    background: white;
    color: #d4af37;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #d4af37;
    color: white;
}

.qty-input {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 2px solid #e0d5c7;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    background: #f9f6f0;
}

/* ============================================
   Price Display
   ============================================ */

.price-box {
    background: linear-gradient(135deg, #d4af37 0%, #c19b2e 100%);
    color: #1a1a2e;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
}

.price-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
    display: block;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 32px;
    font-weight: 900;
}

/* ============================================
   Payment Methods
   ============================================ */

.payment-methods {
    margin-bottom: 20px;
}

.payment-title {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border: 2px solid #e0d5c7;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.payment-option input[type="radio"]:checked+.payment-label {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.payment-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.payment-icon img {
    height:25px; width:auto;
}
.payment-name {
    font-size: 10px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
}

/* ============================================
   Submit Button
   ============================================ */

.book-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #d4af37 0%, #c19b2e 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.book-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   Responsive - Tablet & Large Screens
   ============================================ */

@media (max-width: 900px) {
    .flyer-section {
        grid-template-columns: 1fr;
    }

    .flyer-image-wrapper {
        position: relative;
        top: 0;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 25px;
    }
}

/* ============================================
   Responsive - Mobile
   ============================================ */

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .booking-card {
        padding: 20px;
    }

    .flyer-section {
        gap: 15px;
    }

    .booking-title {
        font-size: 22px;
    }

    .price-amount {
        font-size: 24px;
    }

    .event-quick-info {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Color Variables (Optional - for easy customization)
   ============================================ */

:root {
    --primary-gold: #d4af37;
    --primary-gold-dark: #c19b2e;
    --dark-bg: #1a1a2e;
    --secondary-gold: #b8a87f;
    --error-red: #dc3545;
    --success-green: #d4edda;
    --border-light: #e0d5c7;
    --border-gold: #f0e6d2;
}