/* ===== EVENT BOOKING MODAL ===== */
.event-card {
    cursor: pointer;
}

.event-booking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: all 0.3s;
}

.event-booking-overlay.open {
    display: block;
    opacity: 1;
}

.event-booking-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 90%;
    max-width: 450px;
    background: rgba(26, 29, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    z-index: 3001;
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
}

.event-booking-modal.open {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.event-booking-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: 0.3s;
}

.event-booking-close:hover {
    background: #E21B1B;
}

.event-booking-header {
    margin-bottom: 30px;
}

.event-booking-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.event-booking-modal h2 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #FFD700;
}

#eventBookingSubtitle {
    font-size: 0.85rem;
    opacity: 0.7;
}

.event-booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-field {
    text-align: left;
}

.booking-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.booking-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    box-sizing: border-box;
}

.booking-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.booking-input:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
}

.booking-submit-btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: #ffeb3b;
}

.booking-submit-btn:active {
    transform: translateY(0);
}