/* ==================================================
   style.css — Sandrine Pelletier Réflexologue
   ================================================== */


/* -------------------------
   Polices
   ------------------------- */

@font-face {
    font-family: 'Futura';
    src: local('Futura'), url('../fonts/Futura.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: local('Futura Bold'), url('../fonts/FuturaBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Javacom';
    src: local('Javacom'), url('../fonts/Javacom.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Pacifico;
    src: url('../fonts/Pacifico-Regular.ttf') format('truetype');
}


/* -------------------------
   Variables
   ------------------------- */

:root {
    /* Palette */
    --primary-color:    #f3dfd7; /* fond clair / header / footer */
    --secondary-color:  #a5d7d5; /* teal clair / panneaux colorés */
    --accent-color:     #3b8f8b; /* teal foncé / boutons d'action */
    --dark-color:       #0d3b36; /* texte sur fond teal (panneaux) */
    --brand-dark:       #0f2430; /* titre hero / éléments de marque foncés */
    --extra-color:      #e8e8e8; /* fond alternatif sections */
    --background-color: #f5f5f5; /* fond page */
    --text-color:       #333333; /* texte principal */

    /* Mise en page */
    --header-height: 80px;
    --footer-height: 70px;
    --radius:        12px;
    --shadow:        0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-card:   0 12px 30px rgba(0, 0, 0, 0.12); /* ombre grande carte */
}

@media (min-width: 768px) {
    :root {
        --header-height: 100px;
        --footer-height: 80px;
    }
}


/* -------------------------
   Reset global
   ------------------------- */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Futura', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--background-color);
}


/* -------------------------
   Header — fixe en haut
   ------------------------- */

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    z-index: 300;
    /* box-sizing hérité du reset global */
}

header img {
    height: 50px;
}

@media (min-width: 768px) {
    header img {
        height: 70px;
    }
}

/* -------------------------
   Footer
   ------------------------- */

footer {
    width: 100%;
    height: var(--footer-height);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* -------------------------
   Main — compense le header fixe
   ------------------------- */

main {
    margin-top: var(--header-height);
    display: flex;
    flex-direction: column;
}


/* -------------------------
   Sections — chaque bloc fait au minimum une hauteur d'écran
   ------------------------- */

.section {
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


/* -------------------------
   Hero — section Home
   ------------------------- */

#home {
    background-color: #fff;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 100px;
    gap: 80px;
}

.hero-left {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(32px, 3.2vw, 52px);
    line-height: 1.15;
    color: var(--brand-dark);
}

.hero-text {
    font-family: 'Futura', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 560px;
}

.btn-hero {
    display: inline-block;
    align-self: flex-start;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: #fff;
    font-family: 'Futura', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.12s;
}

.btn-hero:hover {
    opacity: 0.94;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
}

/* Hero responsive */
@media (max-width: 1100px) {
    .hero {
        padding: 80px 48px;
        gap: 48px;
    }

    .hero-title {
        font-size: clamp(28px, 4.5vw, 44px);
    }

    .hero-logo {
        max-height: 360px;
    }
}

/* Hero responsive — mobile */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 24px;
        gap: 28px;
        text-align: center;
    }

    /* Logo au-dessus du texte */
    .hero-right {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-logo {
        max-height: 340px;
        width: 85%;
    }

    .hero-left {
        align-items: center;
    }

    .btn-hero {
        align-self: center;
    }
}


/* Fond décoratif partagé : toutes les sections hors Hero et Booking */
#about,
#services,
#contact {
    background-color: var(--extra-color);
    background-image: url('../images/plume.svg');
    background-repeat: repeat;
    background-position: center;
    background-size: 205px;
}

/* -------------------------
   Slider — section About
   ------------------------- */

#about {
    flex-direction: column;
    padding: 40px 0;
    gap: 30px;
}

.about-title {
    font-family: 'Futura', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-color);
    text-align: center;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 200px, black calc(100% - 200px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 200px, black calc(100% - 200px), transparent);
}

.slider-track {
    display: flex;
    gap: 150px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    padding: 0 75px;
}

.slider-wrapper:hover .slider-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.slider-card {
    flex: 0 0 380px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 44px 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    min-height: 380px;
}

.card-title {
    font-family: 'Javacom', serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--text-color);
}

.card-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 200px;
}

.card-img img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}

.card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Slider mobile — classe injectée par JS */

.slider--mobile {
    mask-image: none !important;
    -webkit-mask-image: none !important;
    overflow: hidden;
    padding: 10px 0 0;
    cursor: default;
}

.slider--mobile .slider-track {
    animation: none !important;
    gap: 0;
    padding: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slider--mobile .slider-card {
    /* largeur forcée via JS, marges latérales visibles */
    margin: 0 20px;
    border-radius: 14px;
    padding: 40px 24px 36px;
    min-height: 330px;
}

/* Flèches de navigation */
.slider-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.slider-arrow {
    background: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.slider-arrow:hover,
.slider-arrow:active {
    background: var(--secondary-color);
    color: #fff;
}

/* Dots */
.slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
}

/* -------------------------
   Bouton principal
   ------------------------- */

.btn-primary {
    display: inline-block;
    padding: 12px 22px;
    background-color: var(--secondary-color);
    color: #fff;
    font-family: 'Futura';
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    opacity: 0.88;
}

/* -------------------------
   Présentation (Me)
   ------------------------- */

/* Padding de base — background hérité du sélecteur groupé #about/#me/#services/#contact */
#me {
    padding: 60px 48px;
}

.me-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: #ffffff;
    width: 92%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    gap: 0;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow-card);
}

.me-left {
    background-color: var(--secondary-color);
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 48px 36px;
    color: var(--dark-color);
    border-top-left-radius: calc(var(--radius) * 1.5);
    border-bottom-left-radius: calc(var(--radius) * 1.5);
}

.me-right {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    padding: 48px 44px;
    color: var(--text-color);
}

.me-section-title {
    font-family: 'Javacom', cursive;
    font-weight: 400;
    font-size: 38px;
    text-align: center;
    margin-bottom: 36px;
}

.me-left .me-section-title {
    color: var(--dark-color);
}

.me-right .me-section-title {
    color: var(--text-color);
}

/* Photo */
.me-photo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.me-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* Texte commun aux deux colonnes */
.me-text p,
.me-vision-text p {
    font-family: 'Futura', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
}

/* Colonne gauche (fond teal) : texte sombre */
.me-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.me-text p {
    color: var(--dark-color);
}

.me-text p strong {
    font-weight: 700;
}

.me-highlight {
    text-align: center !important;
    display: block;
    width: 100%;
    margin: 0 auto;
}

/* Colonne droite (fond blanc) : texte normal */
.me-vision-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.me-vision-text p {
    color: var(--text-color);
}

.me-vision-text p strong {
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.me-benefits {
    list-style: none;
    padding-left: 0;
    margin: 8px 0;
}

.me-benefits li {
    font-family: 'Futura', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    padding-left: 24px;
    position: relative;
}

.me-benefits li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--secondary-color);
    font-size: 18px;
}

/* Responsive Me — Tablette (≤ 900px) */
@media (max-width: 900px) {
    #me {
        padding: 50px 32px;
    }

    .me-container {
        width: 92%;
        flex-direction: column;
    }

    .me-left,
    .me-right {
        flex: none;
        width: 100%;
        border-radius: 0;
    }

    .me-left {
        padding: 40px 32px;
        border-top-left-radius: calc(var(--radius) * 1.5);
        border-top-right-radius: calc(var(--radius) * 1.5);
    }

    .me-right {
        padding: 40px 32px;
        border-bottom-left-radius: calc(var(--radius) * 1.5);
        border-bottom-right-radius: calc(var(--radius) * 1.5);
    }

    .me-section-title {
        font-size: 32px;
        margin-bottom: 28px;
    }
}

/* Responsive Me — Mobile (≤ 768px) */
@media (max-width: 768px) {
    #me {
        padding: 40px 20px;
    }

    .me-container {
        width: 94%;
    }

    .me-left,
    .me-right {
        padding: 32px 20px;
    }

    .me-section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .me-photo {
        width: 150px;
        height: 150px;
    }
}

/* -------------------------
   Services
   ------------------------- */

#services {
    padding: 60px 48px;
}

.services-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: #ffffff;
    width: 92%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    gap: 0;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow-card);
}

.services-left {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    padding: 48px 44px;
    color: var(--text-color);
}

.services-left h2 {
    font-family: 'Javacom', cursive;
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
}

.services-intro {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: left;
}

.cure-section {
    margin-bottom: 24px;
}

.cure-title {
    font-family: 'Futura', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.cure-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 8px;
}

.cure-list {
    list-style: none;
    padding-left: 0;
    margin: 8px 0;
}

.cure-list li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    padding-left: 18px;
    position: relative;
    margin-bottom: 4px;
}

.cure-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-color);
    font-weight: bold;
}

.cure-list li strong {
    font-weight: 700;
}

.services-right {
    background-color: var(--secondary-color);
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 48px 36px;
    color: var(--dark-color);
    border-top-right-radius: calc(var(--radius) * 1.5);
    border-bottom-right-radius: calc(var(--radius) * 1.5);
}

.services-right h2 {
    font-family: 'Javacom', cursive;
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--dark-color);
    text-align: center;
}

.pricing-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.pricing-title {
    font-family: 'Futura', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text-color);
    margin-bottom: 12px;
}

.pricing-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: 'Futura', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--secondary-color);
}

.pricing-special {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    padding: 18px 20px;
    text-align: center;
    width: 100%;
}

.pricing-special-title {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.pricing-special p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--dark-color);
    margin: 0;
}

/* Responsive Services — Tablette (≤ 900px) */
@media (max-width: 900px) {
    #services {
        padding: 50px 32px;
    }

    .services-container {
        width: 92%;
        flex-direction: column;
    }

    .services-left,
    .services-right {
        flex: none;
        width: 100%;
        border-radius: 0;
    }

    .services-left {
        padding: 40px 32px;
        border-top-left-radius: calc(var(--radius) * 1.5);
        border-top-right-radius: calc(var(--radius) * 1.5);
    }

    .services-right {
        padding: 40px 32px;
        border-top-right-radius: 0;
        border-bottom-left-radius: calc(var(--radius) * 1.5);
        border-bottom-right-radius: calc(var(--radius) * 1.5);
    }

    .services-left h2,
    .services-right h2 {
        font-size: 32px;
    }
}

/* Responsive Services — Mobile (≤ 768px) */
@media (max-width: 768px) {
    #services {
        padding: 40px 20px;
    }

    .services-container {
        width: 94%;
    }

    .services-left,
    .services-right {
        padding: 32px 20px;
    }

    .services-left h2,
    .services-right h2 {
        font-size: 28px;
    }

    .pricing-price {
        font-size: 28px;
    }

    .pricing-cards {
        gap: 14px;
    }
}

/* -------------------------
   Contact
   ------------------------- */

.contact-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: #ffffff;
    width: 92%;
    max-width: 1600px;
    min-height: 420px;
    margin: 0 auto;
    padding: 0;
    gap: 0;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow-card);
}

.left-section {
    background-color: var(--secondary-color);
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 36px;
    color: var(--dark-color);
    border-top-left-radius: calc(var(--radius) * 1.5);
    border-bottom-left-radius: calc(var(--radius) * 1.5);
}

.left-section h2 {
    font-family: 'Javacom', serif;
    font-size: 34px;
    margin-bottom: 18px;
    color: var(--dark-color);
}

.left-section p,
.left-section ul,
.left-section li {
    color: var(--dark-color);
    text-align: start;
    line-height: 1.6;
}

.left-section ul {
    list-style: none;
    margin-top: 18px;
    padding: 0; 

}
.left-section a { 
    color: inherit; 
    text-decoration: none; 
}

/* Icônes réseaux sociaux */
.social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    transition: opacity 0.15s;
}

.social-icons a:hover {
    opacity: 0.75;
}

.social-icons img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.right-section {
    flex: 1 1 50%;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.right-section form {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    margin: 0 auto;
}

.right-section h2 {
    font-family: 'Javacom', serif;
    font-size: 34px;
    text-align: center;
    margin-bottom: 18px;
    align-self: center;
}

.right-section input[type="text"],
.right-section input[type="email"],
.right-section textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(13,59,54,0.12);
    border-radius: 24px;
    outline: none;
    font-size: 15px;
    resize: none;
}

.right-section textarea { min-height: 120px; border-radius: 16px; }

.right-section .btn-primary {
    align-self: center;
    padding: 10px 28px;
    border-radius: 24px;
    background-color: var(--accent-color);
}


/* -------------------------
   Booking / Rendez-vous
   ------------------------- */

.booking-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 92%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 0;
    gap: 60px;
    overflow: hidden;
}

/* --- Colonne gauche : calendrier --- */

.booking-left {
    flex: 0 0 50%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.booking-left h2 {
    font-family: 'Javacom', serif;
    font-size: 34px;
    color: var(--text-color);
    margin-bottom: 28px;
}

/* Calendrier */

.calendar {
    width: 100%;
    max-width: 460px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-color);
}

.cal-nav {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 4px 10px;
    color: var(--text-color);
    border-radius: 6px;
    transition: background 0.15s;
}

.cal-nav:hover {
    background-color: var(--extra-color);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-days .cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    cursor: default;
    color: #999;
    transition: background 0.15s, color 0.15s;
}

.calendar-days .cal-day.current-month {
    color: var(--text-color);
    cursor: pointer;
}

.calendar-days .cal-day.current-month:hover {
    background-color: #e8e8e8;
}

.calendar-days .cal-day.selected {
    background-color: var(--accent-color);
    color: #fff;
}

.calendar-days .cal-day.today {
    border: 2px solid var(--secondary-color);
}

/* --- Colonne droite : formulaire --- */

.booking-right {
    flex: 1 1 50%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.booking-right h2 {
    font-family: 'Javacom', serif;
    font-size: 34px;
    color: var(--text-color);
    margin-bottom: 24px;
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#booking-form label {
    font-size: 14px;
    font-weight: 700;
    color: #555;
    margin-top: 8px;
}

#booking-form input,
#booking-form select {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    background-color: #fff;
    transition: border-color 0.2s;
}

#booking-form input:focus,
#booking-form select:focus {
    border-color: var(--secondary-color);
}

.btn-booking {
    display: block;
    width: 100%;
    margin-top: 22px;
    padding: 14px;
    font-family: 'Futura', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background-color: var(--accent-color);
    border: none;
    border-radius: 28px;
    cursor: pointer;
    transition: opacity 0.15s;
}

.btn-booking:hover {
    opacity: 0.88;
}

.booking-notice {
    margin-top: 14px;
    font-size: 12px;
    color: #888;
    text-align: center;
    line-height: 1.5;
}


/* -------------------------
   Bandeau statut
   ------------------------- */

.status-banner {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 290;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.status-banner--info    { background-color: #d3eef9; color: #0a517a; }
.status-banner--success { background-color: #d4edda; color: #155724; }
.status-banner--error   { background-color: #f8d7da; color: #721c24; }

.status-banner__close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.15s;
}

.status-banner__close:hover { opacity: 1; }

/* -------------------------
   Validation formulaire
   ------------------------- */

.input-error {
    border-color: #e53e3e !important;
}

.field-error {
    display: block;
    font-size: 12px;
    color: #e53e3e;
    margin-top: 4px;
    margin-left: 4px;
}


/* ==================================================
   Responsive — Tablette (≤ 1024px)
   ================================================== */

@media (max-width: 1024px) {

    /* Booking : réduire le padding et l'écart entre colonnes */
    .booking-container {
        padding: 40px 40px;
        gap: 36px;
    }

    /* Contact : déjà width:92% en base, seul le padding droit est réduit */

    /* Right section formulaire : padding réduit */
    .right-section {
        padding: 48px 36px;
    }
}


/* ==================================================
   Responsive — Mobile (≤ 767px)
   ================================================== */

@media (max-width: 768px) {

    /* Sections : hauteur minimale auto pour éviter l'espace vide */
    #about,
    #rendez-vous,
    #contact {
        min-height: auto;
        padding-top: 56px;
        padding-bottom: 64px;
    }

    /* Titre section About */
    .about-title {
        font-size: 13px;
        letter-spacing: 0.4em;
        margin-bottom: 8px;
    }

    /* ---- About / Slider ---- */

    .slider-wrapper {
        mask-image: none;
        -webkit-mask-image: none;
    }

    /* ---- Booking (Rendez-vous) ---- */

    .booking-container {
        flex-direction: column;
        padding: 40px 24px 56px;
        gap: 48px;
    }

    .booking-left,
    .booking-right {
        flex: none;
        width: 100%;
    }

    .booking-left h2,
    .booking-right h2 {
        text-align: center;
        width: 100%;
        margin-bottom: 24px;
    }

    .calendar {
        max-width: 100%;
    }

    .calendar-header {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .cal-nav {
        font-size: 26px;
        padding: 6px 14px;
    }

    .calendar-weekdays {
        font-size: 14px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .calendar-days .cal-day {
        font-size: 15px;
    }

    #booking-form {
        gap: 8px;
    }

    #booking-form label {
        margin-top: 12px;
    }

    #booking-form input,
    #booking-form select {
        padding: 12px 14px;
        font-size: 16px;  /* évite le zoom iOS */
    }

    .btn-booking {
        margin-top: 28px;
        padding: 16px;
        font-size: 17px;
    }

    .booking-notice {
        margin-top: 18px;
        font-size: 13px;
    }

    /* ---- Contact ---- */

    .contact-container {
        flex-direction: column;
        width: 92%;
        min-height: unset;
    }

    .left-section {
        flex: none;
        width: 100%;
        border-radius: calc(var(--radius) * 1.5) calc(var(--radius) * 1.5) 0 0;
        border-bottom-left-radius: 0;
        padding: 44px 28px;
        gap: 10px;
    }

    .left-section h2 {
        margin-bottom: 10px;
    }

    .left-section p {
        line-height: 1.9;
    }

    .social-icons {
        margin-top: 24px;
    }

    .right-section {
        flex: none;
        width: 100%;
        padding: 44px 28px;
        border-top-right-radius: 0;
        border-bottom-left-radius: calc(var(--radius) * 1.5);
        border-bottom-right-radius: calc(var(--radius) * 1.5);
    }

    .right-section form {
        max-width: 100%;
        gap: 16px;
    }

    .right-section input[type="text"],
    .right-section input[type="email"],
    .right-section textarea {
        font-size: 16px; /* évite le zoom iOS */
        padding: 14px 18px;
    }

    /* ---- Footer ---- */

    footer {
        height: auto;
        padding: 22px 20px;
        text-align: center;
    }
}