/**
 * ALBEXPO Booth Booking - Frontend Styles
 */

/* Booking Modal Overlay */
.albexpo-booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Booking Modal */
.albexpo-booking-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.albexpo-booking-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
    z-index: 10;
}

.albexpo-booking-modal-close:hover {
    color: #e82128;
}

/* Modal Header */
.albexpo-booking-modal-header {
    background: linear-gradient(135deg, #e82128 0%, #b81c22 100%);
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
}

.albexpo-booking-modal-header h2 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

/* Booth Info */
.albexpo-booking-booth-info {
    display: flex;
    background: #f8f9fa;
    padding: 20px 30px;
    gap: 30px;
    border-bottom: 1px solid #e9ecef;
}

.booth-info-item {
    text-align: center;
}

.booth-info-label {
    display: block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.booth-info-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Form */
#albexpo-booking-form {
    padding: 25px 30px;
}

.albexpo-form-row {
    margin-bottom: 20px;
}

.albexpo-form-row-2 {
    display: flex;
    gap: 20px;
}

.albexpo-form-row-2 .albexpo-form-group {
    flex: 1;
}

.albexpo-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.albexpo-form-group input,
.albexpo-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.albexpo-form-group input:focus,
.albexpo-form-group textarea:focus {
    outline: none;
    border-color: #e82128;
    box-shadow: 0 0 0 3px rgba(232, 33, 40, 0.1);
}

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

/* Form Actions */
.albexpo-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

/* Buttons */
.albexpo-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.albexpo-btn-primary {
    background: linear-gradient(135deg, #e82128 0%, #b81c22 100%);
    color: #fff;
}

.albexpo-btn-primary:hover {
    background: linear-gradient(135deg, #ff3b42 0%, #e82128 100%);
    transform: translateY(-1px);
}

.albexpo-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.albexpo-btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.albexpo-btn-secondary:hover {
    background: #e9ecef;
}

/* Success Message */
.albexpo-booking-success {
    text-align: center;
    padding: 50px 30px;
}

.albexpo-booking-success .success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
}

.albexpo-booking-success h2 {
    color: #28a745;
    margin: 0 0 15px;
    font-size: 28px;
}

.albexpo-booking-success .booking-number {
    background: #f8f9fa;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #e82128;
    margin: 20px 0;
    display: inline-block;
    letter-spacing: 1px;
}

.albexpo-booking-success p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 15px 0;
}

.albexpo-booking-success .albexpo-btn {
    margin-top: 20px;
}

/* SVG Booth Styles */
.booth-available {
    cursor: pointer;
    transition: fill 0.2s;
}

.booth-taken {
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 600px) {
    .albexpo-booking-modal {
        max-height: 95vh;
        margin: 10px;
    }
    
    .albexpo-booking-booth-info {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }
    
    .booth-info-item {
        display: flex;
        justify-content: space-between;
        text-align: left;
    }
    
    .albexpo-form-row-2 {
        flex-direction: column;
        gap: 15px;
    }
    
    .albexpo-form-actions {
        flex-direction: column;
    }
    
    .albexpo-btn {
        width: 100%;
    }
}
