/**
 * Styles pour le système de réservation Villa Ghalya
 * Fichier créé pour corriger l'erreur 404
 */

/* Styles de base pour les formulaires de réservation */
.reservation-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.reservation-form .form-group {
    margin-bottom: 20px;
}

.reservation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.reservation-form .btn-submit {
    background: linear-gradient(135deg, #d4af37, #f4e9c5);
    color: #333;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.reservation-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Styles pour les calendriers Flatpickr */
.flatpickr-calendar {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.flatpickr-day.selected {
    background: #d4af37;
    border-color: #d4af37;
}

.flatpickr-day:hover {
    background: #f4e9c5;
}

/* Responsive */
@media (max-width: 768px) {
    .reservation-form {
        padding: 20px 15px;
        margin: 10px 0;
    }
    
    .reservation-form .btn-submit {
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Styles pour les messages de statut */
.reservation-message {
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    font-weight: 500;
}

.reservation-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.reservation-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.reservation-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

