/* Section Réservation */
.reservation-section {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: #e6cfb0;
    height: 1%;
}

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

.reservation-container h1 {
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Récapitulatif */
.recap-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.recap-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
}

.recap-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.recap-icon {
    font-size: 2rem;
}

.recap-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.recap-item.filled {
    background: indianred;
}

.recap-item.filled .recap-text {
    color: white;
}

/* Étapes */
.reservation-steps {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Champs de formulaire */
.input-field {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.input-field:focus {
    outline: none;
    border-color: #667eea;
}

/* Services */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.service-card {
    background: brown;
    color: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Boutons */
.btn-next,
.btn-validate,
.btn-back,
.btn-new {
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin: 10px 5px;
}

.btn-next,
.btn-validate,
.btn-new {
    background: brown;
    color: white;
}

.btn-next:hover,
.btn-validate:hover,
.btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-back {
    background: #e0e0e0;
    color: #333;
}

.btn-back:hover {
    background: #d0d0d0;
}

/* Confirmation */
.confirmation-message {
    text-align: center;
    padding: 20px;
    text-shadow: none;
}

.confirmation-message h2 {
    color: #4caf50;
    font-size: 2rem;
    margin-bottom: 20px;
}

.reservation-summary {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.reservation-summary p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #333;
}

.reservation-summary strong {
    color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
    .reservation-container h1 {
        font-size: 2rem;
    }
    
    .reservation-steps {
        padding: 30px 20px;
    }
    
    .recap-container {
        gap: 15px;
    }
    
    .recap-item {
        min-width: 150px;
        padding: 15px 20px;
    }
    
    .service-card {
        padding: 30px 15px;
    }
    
    .reservation-section {
        min-height: 100vh;
        padding: 120px 20px 60px;
        margin-top: -27%;
    }


}



/* Ajoutez ces styles à votre fichier reservation.css existant */

/* Notice d'information */
.info-notice {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.notice-text {
    color: #856404;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

.notice-text strong {
    color: #000;
}

/* Formulaire d'informations client */
.form-group {
    margin-bottom: 20px;
}

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

.textarea-field {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

/* Message de confirmation */
.confirmation-notice {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    color: #2e7d32;
    margin: 20px 0;
    line-height: 1.8;
    border-left: 5px solid #4caf50;
}

.reservation-summary {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.reservation-summary p {
    margin: 10px 0;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.reservation-summary strong {
    color: #000;
    min-width: 150px;
    display: inline-block;
}

/* Amélioration des boutons */
.btn-validate {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-validate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

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

.btn-new {
    background: #4caf50;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.btn-new:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

/* Animation pour le changement d'étape */
.step {
    animation: fadeInStep 0.5s ease;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour les nouveaux champs */
@media (max-width: 768px) {
    .info-notice {
        padding: 15px;
    }

    .notice-text {
        font-size: 14px;
    }

    .form-group label {
        font-size: 13px;
    }

    .btn-validate,
    .btn-new {
        width: 100%;
        padding: 15px 20px;
    }
}