/* ==================== STYLES RÉSERVATION ==================== */

/* === SECTION HERO === */
.reservation-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    margin-top: -40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F3A36, #082621);
}

.reservation-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    background: none !important;
}

.reservation-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8894A;
    background: none !important;
    padding: 0 !important;
}

.reservation-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    opacity: 0.95;
}

/* Section réservation - réduire l'espacement */
.reservation-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    padding: 40px 20px 60px !important;
    min-height: calc(100vh - 80px);
}

.reservation-content {
    max-width: 800px;
    margin: 0 auto;
}

.reservation-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.reservation-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--accent);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reservation-form {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: var(--text);
    transition: border-color 250ms ease, box-shadow 250ms ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 137, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 250ms ease, transform 150ms ease, box-shadow 250ms ease;
    box-shadow: 0 4px 15px rgba(184, 137, 74, 0.3);
    margin-top: 30px !important;
}

.btn-submit:hover {
    background: #a07840;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 137, 74, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

.reservation-info {
    background: linear-gradient(135deg, #1a4d45 0%, #0d3832 100%);
    padding: 40px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
}

.reservation-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.reservation-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.reservation-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 200ms ease;
}

.reservation-info a:hover {
    color: #d4a574;
}

/* Consentement RGPD */
.privacy-consent {
    text-align: center;
    padding: 20px;
    margin: 25px 0 -10px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.privacy-consent p {
    margin: 0;
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
}

.privacy-consent a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-consent a:hover {
    color: #b8941f;
    text-decoration: underline;
}

/* Lien politique dans info pratiques */
.privacy-link {
    display: block;
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #e7f3ff 0%, #d1ecf1 100%);
    border-radius: 8px;
    border-left: 4px solid #0c5460;
    text-align: center;
}

.privacy-link a {
    color: #0c5460;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-link a:hover {
    color: #062329;
    text-decoration: underline;
}

/* Styles pour les messages */
.message-box {
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Styles pour les boutons de créneaux */
.creneau-btn {
    padding: 15px 20px;
    border: 2px solid #d4af37;
    background: white;
    color: #2c3e50;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.creneau-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.creneau-btn.selected {
    background: #d4af37;
    color: white;
    border-color: #b8941f;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

#heures-disponibles {
    min-height: 100px;
}

/* Responsive pour la section réservation */
@media (max-width: 768px) {
    .reservation-section {
        padding: 60px 16px;
    }
    .reservation-title {
        font-size: 2.5rem;
    }
    .reservation-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    .reservation-form {
        padding: 30px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .btn-submit {
        padding: 16px 32px;
        font-size: 1rem;
    }
    .reservation-info {
        padding: 30px 20px;
    }
    .reservation-info h3 {
        font-size: 1.6rem;
    }
}
