/* VIP Booking Styles */
.vip-booking-form {
    min-height: 60vh;
}

.lounge-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.lounge-card.uk-card-primary {
    border-color: #1e87f0;
    background: linear-gradient(135deg, #1e87f0 0%, #0f7ae5 100%);
    color: white;
}

.lounge-card.uk-card-primary .uk-text-muted {
    color: rgba(255,255,255,0.8) !important;
}

.lounge-card.uk-card-primary .uk-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

#booking-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1e87f0;
}

.price-tag {
    background: linear-gradient(135deg, #32d296 0%, #1dd1a1 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.guest-count-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 10px;
    margin-top: 10px;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Date Input Validation & Styling */
#booking_date {
    transition: all 0.3s ease;
    border: 2px solid #e5e5e5;
}

#booking_date:focus {
    border-color: #1e87f0;
    box-shadow: 0 0 0 3px rgba(30, 135, 240, 0.1);
    outline: none;
}

#booking_date:invalid {
    border-color: #f0506e;
    box-shadow: 0 0 0 3px rgba(240, 80, 110, 0.1);
}

#booking_date:valid {
    border-color: #32d296;
    box-shadow: 0 0 0 3px rgba(50, 210, 150, 0.1);
}

/* Info Box für verfügbare Daten */
.date-info {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.75rem;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 1px solid #dee2e6;
    border-left: 4px solid #1e87f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.date-info strong {
    color: #1e87f0;
    display: block;
    margin-bottom: 6px;
}

.date-info .next-dates {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #495057;
    background: white;
    padding: 6px 10px;
    border-radius: 4px;
    margin-top: 6px;
    display: inline-block;
}

/* Error & Success Messages */
.date-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left-color: #f0506e;
    color: #721c24;
    animation: shake 0.6s ease-in-out;
}

.date-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left-color: #32d296;
    color: #155724;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Loading States */
.date-loading {
    position: relative;
    overflow: hidden;
}

.date-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 135, 240, 0.3), transparent);
    animation: loading-sweep 1.5s infinite;
}

@keyframes loading-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .vip-booking-form .uk-width-1-2\@m {
        width: 100%;
    }
    
    .lounge-card {
        margin-bottom: 15px;
    }
    
    .date-info {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    .date-info .next-dates {
        font-size: 0.75rem;
    }
}

/* Animation für Lounge-Auswahl */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 135, 240, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(30, 135, 240, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 135, 240, 0); }
}

.lounge-card.selected {
    animation: pulse 2s infinite;
}

/* Form Styling */
.uk-form-controls .uk-input:focus,
.uk-form-controls .uk-select:focus,
.uk-form-controls .uk-textarea:focus {
    border-color: #1e87f0;
    box-shadow: 0 0 0 3px rgba(30, 135, 240, 0.1);
}

.submit-button-container {
    position: relative;
    overflow: hidden;
}

.submit-button-container .uk-button {
    position: relative;
    z-index: 1;
}

/* Success States */
.booking-success {
    background: linear-gradient(135deg, #32d296 0%, #1dd1a1 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.booking-success .uk-icon {
    margin-bottom: 10px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .date-info {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        color: #e2e8f0;
        border-color: #4a5568;
    }
    
    .date-info strong {
        color: #63b3ed;
    }
    
    .date-info .next-dates {
        background: #1a202c;
        color: #cbd5e0;
    }
} 