/* -----------------------------
    BASE & STRUCTURE
----------------------------- */
html, body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
  overflow-x: hidden; /* sécurité mobile anti scroll horizontal */
}

body {
  font-family: "Avenir Light", sans-serif;
  background-color: #ffffff;
  color: #345671;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  flex: 1;
  position: relative;
  padding-top: 100px;
}

/* Marge de défilement pour les ancres pour ne pas finir SOUS la barre */
[id] {
  scroll-margin-top: 100px; 
}

/* -----------------------------
    NAVIGATION (FIXÉE EN HAUT)
----------------------------- */
nav {
  background-color: #ffffff;
  border-bottom: 1px solid #34567133;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}

.logo { width: 80px; height: auto; }

.name-block { display: flex; flex-direction: column; margin-left: -5px; }
.anais { font-size: 28px; font-weight: bold; color: #345671; }
.subtitle { font-size: 18px; color: #fe967d; margin-top: -4px; }

.nav-links ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #345671;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links a:hover { color: #fe967d; }

/* -----------------------------
    DROPDOWN
----------------------------- */
.dropdown { position: relative; }

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  border: 1px solid #34567133;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10000;
  padding: 10px 0;
  list-style: none;
  margin: 0;
}

.dropdown .dropdown-content.show { display: block; }

@media (min-width: 601px) {
  .dropdown:hover .dropdown-content { display: block !important; }
}

.dropdown-content li a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  color: #345671;
}

.dropdown-content li a:hover {
  background-color: #fdf4f2;
  color: #fe967d;
}

/* -----------------------------
    LANGUAGE SWITCH
----------------------------- */
.language-switch { display: flex; gap: 10px; }

.lang-button {
  font-size: 16px;
  color: #345671;
  text-decoration: none;
  border: 1px solid #345671;
  padding: 4px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.lang-button:hover {
  background-color: #fe967d;
  color: white;
  border-color: #fe967d;
}

/* État actif pour la langue sélectionnée */
.lang-button.active {
  background-color: #fe967d;
  color: white;
  border-color: #fe967d;
  font-weight: bold; /* Optionnel : pour bien marquer la différence */
}

/* -----------------------------
    HERO
----------------------------- */
.hero {
  position: relative;
  /* On enlève le margin-top qui créait la bande blanche */
  height: 100vh; 
  min-height: 100svh; 
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 100px;
  overflow: hidden;
  z-index: 1;
  /* margin-top: 100px;  <-- LIGNE SUPPRIMÉE */
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}



.hero-banner {
  position: absolute;
  /* On le remonte juste sous la bordure de la nav */
  top: 0px; 
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  color: #345671;
  text-align: center;
  padding: 8px 0; /* Un peu moins de padding pour plus de finesse */
  font-family: "Cormorant Garamond", serif;
  font-size: 19px; /* Taille légèrement réduite pour l'équilibre */
  font-style: italic;
  z-index: 2;
  border-bottom: 1px solid rgba(52, 86, 113, 0.1); /* Petite ligne discrète */
}

/* -----------------------------
    SECTIONS & COLONNES
----------------------------- */
/* Nouvelles règles ciblées selon la page */
body.index-page .section {
    padding: 20px 20px; /* moins d'espace sur l'index */
}

body:not(.index-page) .section {
    padding: 60px 20px; /* padding normal pour toutes les autres pages */
}

.two-columns { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 30px; 
  align-items: flex-start; 
}

.column-text, .column-image { 
  flex: 1; 
  min-width: 300px; 
}

.column-image img { 
  width: 100%; 
  border-radius: 5px;
  display: block;
}

.column-text h2 {
    margin-top: 0;
}

/* -----------------------------
    ICÔNES
----------------------------- */
.contact-item img,
img[src*="icon-"] {
  width: 24px !important;
  height: 24px !important;
  display: inline-block !important;
  margin-right: 10px;
  vertical-align: middle;
  object-fit: contain;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  width: 100%;
}

.social-links img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links img:hover { transform: scale(1.1); }

/* -----------------------------
   TÉMOIGNAGES - VERSION CORRIGÉE
----------------------------- */
.testimonials-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Espace entre les cartes */
    padding-top: 30px; 
    padding-bottom: 50px;
}

.testimonial-item {
    position: relative;
    background-color: #fdf4f2;
    border-radius: 8px;
    /* Padding réduit en bas pour rapprocher l'auteur */
    padding: 30px 30px 20px 30px; 
    border: 1px solid #fe967d22;
    box-shadow: 0 2px 15px rgba(52, 86, 113, 0.05);
}

.testimonial-item p {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    line-height: 1.6;
    color: #345671;
    font-style: italic;
    margin: 0 0 15px 0; /* Espace entre le texte et l'auteur */
    font-weight: 300;
}

/* On s'assure que le premier élément ne crée pas de double marge */
.testimonials-list .testimonial-item:first-child {
    margin-top: 10px;
}
.testimonial-author {
  display: block;
  text-align: right;
  font-family: "Avenir Light", sans-serif;
  font-size: 13px;
  color: #fe967d;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* On s'assure qu'aucune marge supplémentaire ne traîne */
  margin: 0; 
}

/* -----------------------------
    TYPOGRAPHIE & FOOTER
----------------------------- */
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  color: #345671;
  font-size: 28px;
}

.highlight { color: #fe967d; }

.footer {
  width: 100%;
  text-align: center;
  padding: 30px 20px;
  background-color: #ffffff;
  border-top: 1px solid #34567122;
  color: #345671;
  font-size: 14px;
}

/* -----------------------------
    MOBILE
----------------------------- */
.mobile-menu-toggle { display: none; font-size: 28px; cursor: pointer; }

@media (max-width: 600px) {

  .mobile-menu-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #eee;
    z-index: 9999;
  }

  .nav-links.active { display: block; }

  .nav-links ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-links ul li a {
    display: block;
    padding: 15px;
    text-align: center;
  }

  .hero-text {
    font-size: 32px;
    padding: 15px;
    letter-spacing: 1px;
  }

.hero-banner {
    /* Si la barre de navigation fait environ 60-70px, 
       90px est peut-être trop. 
       Essaie de réduire cette valeur ou de la mettre à 0 
       si tu veux qu'elle soit collée juste sous la nav. */
    top: 10px; 
    padding: 5px 0; /* Réduction du padding interne pour gagner en finesse */
    font-size: 16px; /* Un peu plus petit pour éviter le retour à la ligne */
  }

.hero-image {
    /* Essaie ces valeurs une par une : */
    object-position: 65% 50%; /* Aligne le bord gauche de l'image sur le bord gauche du cadre */
    
    /* OU si tu veux "pousser" l'image vers la droite pour voir la gauche : */
    /* object-position: 10% 50%; */ 
  }

  .two-columns {
    flex-direction: column;
  }

  .section {
    padding: 60px 20px;
  }

  .testimonials-list {
    padding-top: 100px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonial-item {
    padding: 25px;
  }

  .soin-details {
    margin: 30px 20px;
    padding: 20px;
  }

}

/* -----------------------------
    BLOC INFOS SOIN
----------------------------- */
.soin-details {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #fdf4f2;
  border-top: 3px solid #fe967d;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(52, 86, 113, 0.05);
}

.detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.icon-svg {
  width: 22px;
  height: 22px;
  color: #fe967d;
  opacity: 0.9;
}

.detail-item span {
  font-family: "Avenir Light", sans-serif;
  font-size: 14px;
  color: #345671;
  letter-spacing: 0.5px;
}

.limit-zone {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #fdf4f2;
}

.limit-info {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: #fe967d;
  letter-spacing: 1px;
}

.btn-mini-bouton {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background-color: #fe967d;
  color: #ffffff !important;
  text-decoration: none;
  font-family: "Avenir Light", sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-mini-bouton:hover {
  background-color: #345671;
  transform: scale(1.05);
}

/* -----------------------------
    NOUVEAU BLOC CONTACT STYLE "SOIN"
----------------------------- */
.contact-card {
  max-width: 420px;
  margin-top: 20px;
  padding: 18px 18px;
  background-color: #ffffff;
  border: 2px solid #fdf4f2;
  border-top: 3px solid #fe967d;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(52, 86, 113, 0.05);
}

.contact-box {
  padding: 18px 22px;   /* avant c'était sûrement ~30px */
  max-width: 500px;
  margin: 0 auto;
}

.contact-box p {
  margin: 6px 0;       /* réduit l'espace entre les lignes */
  line-height: 1.3;
}

.contact-icons {
  display: flex;
  align-items: center;
  gap: 10px;           /* espace entre les icônes */
  margin-top: 4px;
  margin-bottom: 4px;  /* réduit le vide du bas */
  flex-wrap: wrap;
}

.contact-icons img {
  width: 22px;
  height: 22px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-detail img {
  width: 22px !important;
  height: 22px !important;
  opacity: 0.8;
}

.contact-detail span, 
.contact-detail a {
  font-family: "Avenir Light", sans-serif;
  font-size: 15px;
  color: #345671;
  text-decoration: none;
}

.contact-detail a:hover {
  color: #fe967d;
}

.contact-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #fdf4f2;
  text-align: center;
}

.btn-contact {
  display: inline-block;
  padding: 10px 25px;
  background-color: #fe967d;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #345671;
  transform: translateY(-2px);
}

/* Ajustement mobile pour la carte */
@media (max-width: 600px) {
  .contact-card {
    margin: 20px 0;
    padding: 20px;
  }
}

/* Couleur du lien mail par défaut (plus de bleu moche !) */
.contact-card a.email-link {
  color: #345671 !important; /* Ton bleu sombre habituel */
  text-decoration: none;      /* Enlève le souligné */
  transition: color 0.3s ease;
}

/* Couleur au survol pour que l'utilisateur sache qu'il peut cliquer */
.contact-card a.email-link:hover {
  color: #fe967d !important; /* Ta couleur pêche/orange */
  text-decoration: underline; /* Optionnel : rajoute le souligné juste au survol */
}

/* Force l'affichage du dropdown quand le JS l'ordonne (pour tablettes) */
.dropdown-content.show {
  display: block !important;
}

/* Uniquement pour la page témoignages */
.page-temoignages main {
    padding-top: 0; /* On neutralise le padding général */
}

/* On crée le "mini espace" ici */
.page-temoignages #temoignages {
    padding-top: 110px; /* 80px pour passer la barre + 30px de "respiration" */
}

.page-temoignages .testimonials-list {
    padding-top: 10px; /* Un tout petit interstice entre le titre H1 et le premier avis */
}






/* -----------------------------
    BOUTON FLOTTANT (SIDEBAR)
----------------------------- */
.floating-contact {
  position: fixed;
  bottom: 40px; /* Distance du bas */
  right: 40px;  /* Distance de la droite */
  background-color: #fe967d; /* Ta couleur highlight */
  color: #ffffff !important;
  padding: 15px 25px;
  border-radius: 50px; /* Forme pilule très douce */
  text-decoration: none;
  font-family: "Avenir Light", sans-serif;
  font-size: 15px;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(254, 150, 125, 0.3); /* Ombre portée douce */
  z-index: 9999; /* Toujours au-dessus du reste */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animation fluide */
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-contact:hover {
  background-color: #345671; /* Change vers ton bleu sombre au survol */
  transform: translateY(-5px) scale(1.05); /* Petit saut vers le haut */
  box-shadow: 0 15px 30px rgba(52, 86, 113, 0.2);
}

/* Version Mobile : on le rend un peu plus petit pour ne pas gêner la lecture */
@media (max-width: 600px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 13px;
  }
}


/* -----------------------------
    AJUSTEMENT FOOTER POUR BOUTON
----------------------------- */
@media (max-width: 600px) {
  .footer {
    /* On ajoute de l'espace en bas pour que le texte remonte 
       au-dessus du bouton flottant */
    padding-bottom: 80px; 
  }
}

/* Optionnel : si ça gêne aussi sur ordinateur */
@media (min-width: 601px) {
  .footer {
    padding-bottom: 50px;
  }
}

/* Style Témoignages : Juste l'icône, pas d'entête */
.testimonial-item {
    position: relative;
    background-color: #fdf4f2;
    border-radius: 8px;
    padding: 40px;
    border: 1px solid #fe967d22;
    box-shadow: 0 2px 15px rgba(52, 86, 113, 0.05);
    margin-bottom: 2px;
}

/* Les guillemets */
.testimonial-item::before {
    content: "“";
    position: absolute;
    top: 5px;
    left: 20px;
    font-size: 80px;
    color: #fe967d;
    opacity: 0.15;
    font-family: "Cormorant Garamond", serif;
}

/* L'icône flottante en haut à droite */
.testimonial-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 25px !important;
    height: 25px !important;
    opacity: 0.5; /* Discret */
}



/* -----------------------------
   TÉMOIGNAGES - VERSION CORRIGÉE
----------------------------- */
.testimonials-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espace entre les cartes */
    padding-top: 30px; 
    padding-bottom: 50px;
}


.title-with-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.title-with-logo h1 {
  margin: 0;
  flex: 0 1 auto;
}

.logo-partner {
  height: 80px;
  width: auto;
  flex-shrink: 0;
}

.subpage main {
  padding-top: 40px;
}



.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}



.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 15px;
}

.social-links img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover img {
  transform: scale(1.15);
  opacity: 0.8;
}

.music-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.music-label {
  font-weight: 500;
  white-space: nowrap; /* évite le retour à la ligne */
}

/* Spécifique à ton encart musique */
.music-card .social-links {
  display: flex;
  flex-wrap: nowrap;   /* empêche retour à la ligne */
  gap: 8px;            /* espace compact */
  margin: 5px 0;
}

.music-card .social-links img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.music-card .social-links a:hover img {
  transform: scale(1.15);
  opacity: 0.8;


}

.header-with-cta {
    display: flex;
    justify-content: space-between; /* Pousse le titre à gauche et les boutons à droite */
    align-items: center;            /* Centre verticalement */
    flex-wrap: wrap;                /* Très important pour le mobile */
    gap: 15px;                      /* Espace entre titre et boutons si l'écran rétrécit */
    margin-bottom: 20px;
}

#offre-title {
    margin: 0;                      /* Enlève les marges par défaut du h1 */
}

.cta-header-group {
    display: flex;
    gap: 10px;                      /* Espace entre les deux boutons */
}

/* --- Adaptation Mobile --- */
@media (max-width: 768px) {
    .header-with-cta {
        flex-direction: column;     /* Empile tout sur mobile */
        align-items: flex-start;    /* Aligne tout à gauche */
    }
}


/* --- Ajustements mobiles pour les boutons de titre --- */
@media (max-width: 600px) {
    .cta-header-group {
        gap: 8px; /* Réduit l'espace entre les deux boutons */
    }

    .btn-mini-bouton {
        font-size: 10px !important; /* On réduit la police pour que le texte tienne */
        padding: 6px 12px !important; /* On réduit les marges internes */
        white-space: nowrap; /* Force le texte à rester sur une ligne */
    }
}





#intro-prestations {
  text-align: center;
}

.intro-text {
  max-width: 750px;
  margin: auto;
  margin-bottom: 50px;
}

.prestations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 40px auto;
}

.prestation-box {
  padding: 25px;
  border: 1px solid #d8d8d8;
  text-decoration: none;
  color: #345671;
  font-size: 18px;
  text-align: center;
  transition: all 0.25s ease;
}

.prestation-box:hover {
  background-color: #f5f7fa;
  border-color: #345671;
}

#intro-prestations .cta-header-group {
  display: flex;
  justify-content: center; /* centre horizontalement */
  gap: 15px;               /* espace entre les boutons */
  margin-top: 30px;        /* espace au dessus */
  flex-wrap: wrap;          /* pour que ça passe proprement sur mobile */
}

/* BOUTONS PRESTATIONS - fond très léger + hover highlight */
.prestation-box {
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #d8d8d8;       /* gris clair */
  text-decoration: none;
  color: #345671;                   /* texte normal */
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9); /* fond ultra léger, presque blanc */
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);    /* ombre douce */
}

/* hover avec ton rose highlight */
.prestation-box:hover {
  background-color: #fe967d;        /* rose highlight */
  border-color: #fe967d;
  color: #ffffff;                   /* texte blanc */
  transform: translateY(-4px);      /* léger lift */
  box-shadow: 0 8px 16px rgba(254,150,125,0.25); /* ombre douce accentuée */
}

/* CTA boutons centrés dans cette section */
#intro-prestations .cta-header-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;  /* mobile */
}

/* ----------------------------------------
    PRESTATIONS HERO - SOUS LE BOUTON (FULL WIDTH)
---------------------------------------- */
.prestations-hero {
    position: relative;
    /* Technique pour sortir du container et toucher les bords de l'écran */
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    height: 60vh; /* Ajustez la hauteur selon votre goût */
    margin-top: 40px; /* Espace entre le bouton et l'image */
    margin-bottom: 0;
    overflow: hidden;
    display: block; /* Force l'image à aller à la ligne */
}

.prestations-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: none !important;
}

/* Ajustement Mobile */
@media (max-width: 600px) {
    .prestations-hero {
        height: 50vh; /* Un peu plus petit sur téléphone */
        margin-top: 30px;
    }
    .prestations-hero img {
        object-position: 72% center; /* Garde le cadrage sur la harpe */
    }
}