/**
 * Styles principaux - Villa Montpensier
 * Récupéré et adapté du backup
 */

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Charte graphique selon cahier des charges */
    --color-bordeaux: #8B2942;      /* Couleur principale, boutons, accents */
    --color-beige: #F5E6D3;         /* Fond, sections alternées */
    --color-vert: #5A6B5A;          /* Accents secondaires */
    --color-or: #D4A855;            /* Highlights, badges, étoiles */
    --color-blanc-casse: #FAF8F5;   /* Fond clair */
    --color-noir: #1A1A1A;          /* Texte principal */
    
    /* Couleurs utilitaires */
    --color-primary: var(--color-bordeaux);
    --color-secondary: var(--color-vert);
    --color-accent: var(--color-or);
    --color-text: var(--color-noir);
    --color-text-light: #666;
    --color-bg: var(--color-blanc-casse);
    --color-bg-light: var(--color-beige);
    --color-border: #ddd;
    
    /* Typographie selon cahier des charges */
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

/* Titres avec Playfair Display */
h1, h2 {
    font-family: var(--font-headings);
    font-weight: 600;
}

h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 500;
}

/* Texte courant avec Lato */
p, li, a, span, div, label, input, textarea, select {
    font-family: var(--font-body);
}

p {
    font-weight: 400;
    line-height: 1.6;
}

a {
    font-weight: 400;
}

li {
    font-weight: 400;
    line-height: 1.6;
}

/* Texte léger si besoin */
.text-light {
    font-weight: 300;
}

/* Texte gras */
strong, b, .text-bold {
    font-weight: 700;
}

/* Boutons et CTA avec Lato */
button, .btn-primary, .btn-secondary, .btn-submit, input[type="submit"], input[type="button"] {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo h1,
.logo .logo-title {
    font-size: 28px;
    color: var(--color-secondary);
    margin-bottom: 5px;
    font-family: var(--font-headings);
    font-weight: 600;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.tagline {
    font-size: 14px;
    color: var(--color-text-light);
    font-style: italic;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--color-primary);
}

/* Sélecteur de langue - Avec vraies icônes */
.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-flag {
    background: none;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.flag-img {
    width: 32px;
    height: 24px;
    display: block;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.lang-flag:hover {
    border-color: var(--color-primary);
    transform: scale(1.1);
    background: rgba(139, 41, 66, 0.05);
}

.lang-flag:hover .flag-img {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.lang-flag.active {
    border-color: var(--color-primary);
    background: rgba(139, 41, 66, 0.15);
    box-shadow: 0 0 0 2px rgba(139, 41, 66, 0.2);
}

/* Formules tarifaires */
.formules-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.formules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.formule-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.formule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.formule-card h3 {
    font-size: 28px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.formule-prix {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.formule-inclus {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.formule-inclus li {
    padding: 10px 0;
    color: var(--color-text-light);
}

.formule-inclus i {
    color: var(--color-primary);
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }
    
    .language-selector {
        order: 1;
    }
    
    .main-navigation {
        order: 2;
    }
    
    .formules-grid {
        grid-template-columns: 1fr;
    }
}

.main-navigation a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-main-title {
    font-family: var(--font-headings) !important;
    font-weight: 600 !important;
}

.hero-content p {
    font-size: 24px;
}

/* ============================================
   SECTION ARGUMENTS - POURQUOI CHOISIR
   ============================================ */
.arguments-section {
    background: var(--color-bg-light);
    padding: 5rem 0;
    width: 100%;
}

.arguments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.argument-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1), 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

.argument-card:hover {
    transform: translateY(-0.5rem) scale(1.02);
    box-shadow: 0 0.5rem 2rem rgba(139, 41, 66, 0.15), 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.argument-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.argument-icon i {
    font-size: 3rem;
    line-height: 1;
}

.argument-title {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.argument-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-secondary);
    margin: 0;
    flex-grow: 1;
}

.arguments-cta {
    text-align: center;
    margin-top: 2rem;
}

.arguments-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 0.5rem;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 1rem rgba(139, 41, 66, 0.25);
}

.arguments-cta .btn-primary:hover {
    background: var(--color-accent);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1.5rem rgba(139, 41, 66, 0.35);
}

/* Responsive - Tablet */
@media screen and (max-width: 1024px) {
    .arguments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .argument-card {
        padding: 2.25rem 1.75rem;
    }

    .argument-icon {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 1.25rem;
    }

    .argument-icon i {
        font-size: 2.5rem;
    }

    .argument-title {
        font-size: 1.375rem;
    }
}

/* Responsive - Mobile */
@media screen and (max-width: 768px) {
    .arguments-section {
        padding: 3.5rem 0;
    }

    .arguments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .argument-card {
        padding: 2rem 1.5rem;
    }

    .argument-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }

    .argument-icon i {
        font-size: 2.25rem;
    }

    .argument-title {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .argument-text {
        font-size: 0.9375rem;
    }

    .arguments-cta {
        margin-top: 1.5rem;
    }

    .arguments-cta .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   FORMULAIRE DE RÉSERVATION
   ============================================ */
.reservation-section {
    background: var(--color-bg-light);
    padding: 60px 0;
    width: 100%;
}

.reservation-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--color-secondary);
    width: 100%;
}

.reservation-form-wrapper {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 2.5%;
}

.reservation-form-wrapper h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.reservation-form {
    background: #fff;
    padding: 2.5rem 2.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08), 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2rem;
    align-items: start;
    justify-items: stretch;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.reservation-form .form-group {
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
}

/* Champ message (textarea) sur toute la largeur du formulaire */
.reservation-form .form-group-full-width {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 0.875rem;
    display: block;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.form-group label i {
    color: var(--color-primary);
    margin-right: 0.5rem;
    font-size: 0.8125rem;
    opacity: 0.8;
}

.form-group label em {
    font-size: 0.8125em;
    font-weight: 400;
    color: #6c757d;
    font-style: normal;
    display: block;
    margin-top: 0.1875rem;
    opacity: 0.85;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    width: 100%;
    min-height: 2.75rem;
    box-sizing: border-box;
    background: #fafafa;
    color: #1f2937;
    line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-group textarea {
    min-height: 7rem;
    resize: vertical;
    line-height: 1.6;
    padding-top: 0.875rem;
}

/* Formulaire réservation : textarea message sur toute la largeur */
.reservation-form .form-group textarea {
    width: 100%;
    min-height: 8rem;
    box-sizing: border-box;
}

/* Compteur de caractères pour les champs message (limite 500) */
.char-counter-wrap {
    margin-top: 0.35rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-align: right;
}
.char-counter-wrap .char-counter {
    font-variant-numeric: tabular-nums;
}
.char-counter-wrap.at-limit .char-counter {
    color: var(--color-primary);
    font-weight: 600;
}

.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.1);
    transform: translateY(-1px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-submit {
    grid-column: 1 / -1;
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.875rem 2.25rem;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    margin: 1.75rem auto 0;
    display: block;
    width: auto;
    min-width: 35%;
    max-width: 45%;
    box-shadow: 0 0.125rem 0.5rem rgba(139, 41, 66, 0.25), 0 0.25rem 0.75rem rgba(139, 41, 66, 0.15);
    text-transform: none;
}

.btn-submit:hover {
    background: #a02d4a;
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.75rem rgba(139, 41, 66, 0.3), 0 0.5rem 1.25rem rgba(139, 41, 66, 0.2);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 0.0625rem 0.375rem rgba(139, 41, 66, 0.25);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    transform: none;
}

/* Messages de formulaire */
#reservation-message-container {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #28a745;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid #f5c6cb;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-message::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #dc3545;
}

/* ============================================
   PROTECTION ANTI-SPAM
   ============================================ */

/* Honeypot - Champ invisible pour piéger les bots */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Conteneur hCaptcha (Web3Forms) - réserver l'espace pour le widget */
.h-captcha {
    min-height: 65px;
    margin: 1rem 0;
}
.h-captcha iframe {
    max-width: 100%;
}

/* CAPTCHA mathématique */
.math-captcha-group {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.math-captcha-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
    font-size: 0.875rem;
    display: block;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
}

.captcha-question {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9375rem;
    white-space: nowrap;
}

.captcha-input {
    width: 80px !important;
    min-width: 80px !important;
    max-width: 100px !important;
    padding: 0.625rem 0.75rem !important;
    text-align: center;
    font-size: 1rem !important;
    font-weight: 600;
    border: 2px solid #d1d5db !important;
    border-radius: 0.5rem !important;
    background: #fff !important;
}

.captcha-input:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.1) !important;
    outline: none !important;
}

.captcha-input.error {
    border-color: #dc3545 !important;
    background: #fff5f5 !important;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.captcha-error {
    color: #dc3545;
    font-size: 0.8125rem;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
}

.captcha-error::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
}

/* Responsive pour le CAPTCHA */
@media screen and (max-width: 768px) {
    .captcha-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .captcha-question {
        font-size: 0.875rem;
    }
    
    .captcha-input {
        width: 100% !important;
        max-width: 100px !important;
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.presentation-section,
.avis-section,
.services-preview {
    padding: 80px 0;
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.presentation-text h2 {
    font-size: 36px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.presentation-text h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.presentation-text p {
    margin-bottom: 20px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.presentation-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    margin-top: 20px;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: #b8c41d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: #fff;
}

/* ============================================
   AVIS CLIENTS
   ============================================ */
.avis-section {
    background: var(--color-bg-light);
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.avis-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.avis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.avis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.avis-author {
    font-weight: 600;
    color: var(--color-secondary);
}

.avis-date {
    font-size: 14px;
    color: var(--color-text-light);
}

.avis-rating {
    margin-bottom: 15px;
}

.avis-rating .fa-star {
    color: var(--color-accent);
    margin-right: 3px;
}

.avis-rating .far.fa-star {
    color: #bbbcbf;
}

.avis-text {
    color: var(--color-text-light);
    line-height: 1.8;
}

.avis-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.service-card p {
    color: var(--color-text-light);
}

.services-link {
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-secondary);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.footer-section p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section i {
    margin-right: 10px;
    color: var(--color-primary);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    margin: 0 5px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media screen and (max-width: 1024px) {
    .reservation-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reservation-form-wrapper {
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .reservation-form {
        grid-template-columns: 1fr;
        padding: 1.75rem 1.5rem;
        width: 100%;
        max-width: 100%;
        gap: 1.25rem;
    }
    
    .form-group label {
        min-height: auto;
        font-size: 0.8125rem;
        margin-bottom: 0.4375rem;
    }
    
    .reservation-form-wrapper {
        width: 100%;
        max-width: 95%;
        padding: 0 2.5%;
    }
    
    .reservation-form-wrapper h2 {
        margin-bottom: 1.75rem;
        font-size: 1.5rem;
    }
    
    .btn-submit {
        min-width: 100%;
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .avis-form {
        padding: 35px 25px;
    }
    
    .btn-submit {
        min-width: 100%;
        max-width: 100%;
    }
    
    .reservation-form-wrapper {
        left: 0;
        transform: none;
        width: 100%;
        padding: 0 10px;
    }
    
    .reservation-form-wrapper {
        padding: 0 10px;
    }

    .presentation-content {
        grid-template-columns: 1fr;
    }

    .avis-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--color-secondary);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: var(--color-primary);
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--color-secondary);
}

.contact-item p {
    color: var(--color-text-light);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--color-secondary);
    text-align: center;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form .form-group {
    text-align: left;
    width: 100%;
}

.contact-form .btn-submit {
    margin: 20px auto 0;
    width: auto;
}

/* ============================================
   AVIS PAGE
   ============================================ */
.avis-full-section {
    padding: 80px 0;
}

.avis-form-section {
    background: var(--color-bg-light);
    padding: 80px 0;
    text-align: center;
}

.avis-form-section .section-title {
    text-align: center;
}

.avis-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.avis-form .form-group {
    text-align: left;
    width: 100%;
}

.avis-form .btn-submit {
    margin: 20px auto 0;
    display: block;
    min-width: 280px;
    max-width: 400px;
}

.avis-form .btn-submit {
    margin: 20px auto 0;
}

.rating-input {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.rating-input .star {
    cursor: pointer;
    font-size: 32px;
    color: var(--color-accent);
    transition: var(--transition);
}

.rating-input .star:hover {
    transform: scale(1.2);
}

.rating-input .far.fa-star {
    color: #bbbcbf;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-full-section {
    padding: 80px 0;
}

.service-card-large {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 40px;
    color: #fff;
}

.service-card-large h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.service-card-large p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   UTILITAIRES
   ============================================ */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.animate-in {
    opacity: 1;
}

.slide-in {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.slide-in.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   LOCALISATION PAGE
   ============================================ */
.localisation-section {
    padding: 80px 0;
}

.localisation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.localisation-info h2 {
    font-size: 28px;
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.address-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.address-card i {
    font-size: 40px;
    color: var(--color-primary);
}

.address-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.access-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.access-item i {
    font-size: 32px;
    color: var(--color-primary);
    margin-top: 5px;
}

.access-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.points-interet {
    margin-top: 60px;
}

.points-interet h2 {
    font-size: 32px;
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 40px;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.point-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.point-card i {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.point-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.point-card p {
    color: var(--color-text-light);
}

/* ============================================
   RESERVATION PAGE
   ============================================ */
.reservation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.reservation-form-wrapper h2 {
    font-size: 28px;
    color: var(--color-secondary);
    margin-bottom: 30px;
    text-align: center;
}

.reservation-info {
    background: var(--color-bg-light);
    padding: 30px;
    border-radius: 10px;
}

.reservation-info h2 {
    font-size: 24px;
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 32px;
    color: var(--color-primary);
    margin-top: 5px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.info-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

@media screen and (max-width: 968px) {
    .localisation-content,
    .reservation-content {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        min-height: 350px;
    }
}

/* ============================================
   MENTIONS LÉGALES PAGE
   ============================================ */
.mentions-section {
    padding: 80px 0;
}

.mentions-content {
    max-width: 900px;
    margin: 0 auto;
}

.mention-block {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.mention-block h2 {
    font-size: 28px;
    color: var(--color-secondary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
}

.mention-block h3 {
    font-size: 22px;
    color: var(--color-primary);
    margin-top: 25px;
    margin-bottom: 15px;
}

.mention-block p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.mention-block p strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.mention-block ul {
    margin: 15px 0;
    padding-left: 30px;
}

.mention-block ul li {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 10px;
}

.mention-block a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: var(--transition);
}

.mention-block a:hover {
    color: var(--color-secondary);
}

@media screen and (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .mention-block {
        padding: 25px;
    }
    
    .mention-block h2 {
        font-size: 24px;
    }
    
    .mention-block h3 {
        font-size: 20px;
    }
}

/* ============================================
   MESSAGES DE FORMULAIRE
   ============================================ */

.form-message {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-message::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Message d'erreur (rouge) */
.form-message.error {
  background-color: #ffe6e6;
  color: #d63031;
  border: 1px solid #d63031;
}

.form-message.error::before {
  content: "\f06a"; /* Icône exclamation-circle */
  color: #d63031;
}

/* Message de succès (vert) */
.form-message.success {
  background-color: #e6f7e6;
  color: #27ae60;
  border: 1px solid #27ae60;
}

.form-message.success::before {
  content: "\f058"; /* Icône check-circle */
  color: #27ae60;
}

/* Message d'info (bleu) */
.form-message.info {
  background-color: #e6f2ff;
  color: #0984e3;
  border: 1px solid #0984e3;
}

.form-message.info::before {
  content: "\f05a"; /* Icône info-circle */
  color: #0984e3;
}

/* Animation d'apparition */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .form-message {
    font-size: 0.875rem;
    padding: 12px 15px;
  }
  
  .form-message::before {
    font-size: 1rem;
  }
}

/* ============================================
   COMPOSANT TÉLÉPHONE INTERNATIONAL
   ============================================ */
.phone-input-wrapper {
    display: flex;
    gap: 0;
    width: 100%;
}

.phone-code-container {
    position: relative;
    flex-shrink: 0;
}

.phone-code-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 0.625rem;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 0.5rem 0 0 0.5rem;
    background: #f9fafb;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text);
    height: 100%;
    transition: var(--transition);
    white-space: nowrap;
}

.phone-code-btn:hover {
    background: #f3f4f6;
}

.phone-code-btn:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.1);
}

.phone-flag {
    font-size: 1.125rem;
    line-height: 1;
}

.phone-dial {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text);
}

.phone-arrow {
    font-size: 0.625rem;
    color: #9ca3af;
    transition: transform 0.2s ease;
    margin-left: 0.125rem;
}

.phone-code-btn[aria-expanded="true"] .phone-arrow {
    transform: rotate(180deg);
}

/* Dropdown des indicatifs */
.phone-code-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 1000;
    width: 280px;
    max-height: 300px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.phone-code-dropdown.open {
    display: flex;
    flex-direction: column;
}

/* Recherche dans le dropdown */
.phone-code-search {
    padding: 0.625rem 0.75rem;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    font-family: var(--font-body);
    font-size: 0.875rem;
    outline: none;
    background: #f9fafb;
    width: 100%;
    box-sizing: border-box;
}

.phone-code-search::placeholder {
    color: #9ca3af;
}

.phone-code-search:focus {
    background: #fff;
    border-bottom-color: var(--color-primary);
}

/* Liste des pays */
.phone-code-list {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    max-height: 240px;
}

.phone-code-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background 0.15s ease;
}

.phone-code-option:hover {
    background: var(--color-beige);
}

.phone-country-name {
    flex: 1;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.phone-country-dial {
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

/* Champ numéro de téléphone */
.phone-number-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0 0.5rem 0.5rem 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: #f9fafb;
    transition: var(--transition);
    line-height: 1.5;
    min-width: 0;
}

.phone-number-input::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.phone-number-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.1);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .phone-code-dropdown {
        width: 260px;
    }

    .phone-code-btn {
        padding: 0.625rem 0.5rem;
    }

    .phone-dial {
        font-size: 0.8125rem;
    }
}
