:root{
  --bg:#f5f2ea;
  --bg-soft:#f7f3eb;
  --blue:#1f31d3;
  --blue-dark:#142995;
  --turquoise:#43cbc4;
  --gold:#ddb041;
  --orange:#d87b24;
  --text:#20348f;
  --white:#ffffff;
  --shadow:0 12px 34px rgba(12, 25, 92, 0.12);
  --radius:28px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Cormorant Garamond", serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input,
textarea{
  font:inherit;
}

main,
section,
header,
footer{
  width:100%;
}

.container{
  width:min(100% - 24px, 1200px);
  margin:0 auto;
}

.narrow{
  width:min(100% - 24px, 760px);
}

/* HEADER */
header{
  position:relative;
  z-index:1000;
  background:rgba(245,242,234,0.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(31,49,211,0.08);

  height:180px;
  display:block;
  flex-direction:column;
}

.header-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items: start;
  width:100%;
  padding:10px 8px 0 12px;
  height:100%;
  position:relative;
}

.logo{
  width:120px;
  height:auto;
  object-fit:contain;
}
.brand{
  display:block;
  align-items:center;
  gap:10px;
}

.brand-name{
  font-family:"Parisienne", cursive;
  font-size:1.8rem;
  color:var(--gold);
  line-height:1;
}
.burger{
  width:42px;
  height:42px;
  position:relative;
  background:none;
  border:none;
  cursor:pointer;
  justify-self:end;
  margin-right:2px;
  z-index:2000;
}

/* 3 lignes */
.burger::before,
.burger::after,
.burger span{
  content:"";
  position:absolute;
  left:8px;
  right:8px;
  height:2px;
  background:var(--blue-dark);
  transition:0.3s ease;
}

.burger span{
  top:20px;
}

.burger::before{
  top:12px;
}

.burger::after{
  top:28px;
}

/* état actif → croix */
.burger.active span{
  opacity:0;
}

.burger.active::before{
  transform:rotate(45deg);
  top:20px;
}

.burger.active::after{
  transform:rotate(-45deg);
  top:20px;
}

nav{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  width:100%;
  display:none;
  flex-direction:column;
  background:var(--bg);
  box-shadow:0 12px 25px rgba(0,0,0,0.08);
  max-height:calc(100vh - 180px);
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  z-index:1500;
}

nav a,
.submenu-toggle{
  display:block;
  width:100%;
  padding:16px 18px;
  text-align:left;
  color:var(--blue-dark);
  text-decoration:none;
  border-top:1px solid rgba(31,49,211,0.08);
  background:none;
  border-left:none;
  border-right:none;
  border-bottom:none;
  cursor:pointer;
  font-size:1.15rem;
  font-weight:600;
}
.submenu-toggle{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

nav a:hover,
.submenu-toggle:hover{
  background:rgba(67,203,196,0.08);
}

.submenu{
  display:none;
  flex-direction:column;
  background:#ece7d9;
  max-height:260px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}

.submenu a{
  padding-left:30px;
  font-size:1rem;
}

.has-submenu.open .submenu{
  display:flex;
}

/* HERO */
.hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 16px 100px;
  background:url("bgwaitingtel.jpg") center/cover no-repeat;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background-image: url(bgone.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
}

.hero-script{
  font-family:"Parisienne", cursive;
  color:rgba(255,255,255,0.95);
  font-size:3rem;
  line-height:1;
  margin-bottom:12px;
}
h1, h2, h3{
  margin:0;
}

.hero-content h1{
  color:rgb(218, 229, 252);
  font-size:1.6rem;
  font-family:"Parisienne", cursive;
  line-height:1.1;
}

.hero-content p:nth-of-type(2){
  font-family:"Parisienne", cursive;
  font-size:2.4rem;
  line-height:0.95;
  color:#fff;
  margin-bottom:16px;
}
.hero-location{
  color:#fff;
  font-size:1.6rem;
  font-weight:600;
  margin-bottom:12px;
}

.hero-subtitle{
  color:var(--blue-dark);
  font-size:1.5rem;
  font-weight:700;
  line-height:1.1;
}

.hero-btn,
.pill-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:999px;
  background:var(--gold);
  color:var(--blue-dark);
  font-size:1.3rem;
  font-weight:700;
  margin-top:26px;
  box-shadow:var(--shadow);
}
.hero-btn:hover,
.pill-btn:hover{
  background:var(--blue-dark);
  color:var(--gold);
  transition: 0.2s;
}

/* SECTIONS */
section{
  padding:72px 0;
}

.section-title{
  font-family:"Parisienne", cursive;
  font-size:3rem;
  line-height:1;
  text-align:center;
  color:var(--blue);
  margin-bottom:34px;
}

/* WHO */
.who{
  background:var(--turquoise);
  color:#fff;
  padding-top:84px;
  padding-bottom:84px;
}

.who-grid{
  display:grid;
  gap:28px;
}

.who-image-wrap{
  display:flex;
  justify-content:center;
}

.who-image{
  width:min(100%, 290px);
  aspect-ratio:1 / 1;
  border-radius:50%;
  object-fit:cover;
  border:4px solid var(--gold);
  box-shadow:inset 0 0 0 6px rgba(221,176,65,0.4);
}

.who h2{
  font-family:"Parisienne", cursive;
  color:var(--orange);
  font-size:3rem;
  line-height:1;
  margin-bottom:18px;
  text-align:center;
}

.who-text{
  text-align:center;
}

.who-text p{
  font-size:1.45rem;
  line-height:1.15;
  margin-bottom:14px;
}

/* Holistique */
.holistique{
  background:var(--bg);
}

.two-cols{
  display:grid;
  gap:20px;
}

.text-card{
  font-size:1.45rem;
  line-height:1.16;
}

.text-card strong,
.carto-text strong{
  color:var(--turquoise);
}

/* Carto */
.carto-grid{
  display:grid;
  gap:26px;
  align-items:center;
}

.sun-card{
  display:flex;
  justify-content:center;
  align-items:center;
}

.sun-img{
  width:100%;
  max-width:340px;
  height:auto;
  object-fit:contain;
}
.carto-text{
  font-size:1.4rem;
  line-height:1.16;
}

.carto-text p{
  margin-bottom:18px;
}

.carto-text span,
.reservation span{
  color:var(--orange);
  text-decoration:underline;
}

/* Services */
.services-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:42px;
  align-items:start;
}

.service-visual{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:8px 0;
}

.service-visual img{
  display:block;
  width:100%;
  max-width:340px;
  height:auto;
  object-fit:contain;
  filter: drop-shadow(0 8px 18px rgba(20, 41, 149, 0.08));
}
.service-visual:hover img{
  filter:
    brightness(1.08)
    saturate(1.2)
    hue-rotate(-5deg);
    cursor: pointer;
}
/* réglages individuels mobile */
.service-ecriture img{ max-width:300px; }
.service-oracles img{ max-width:320px; }
.service-hypnose img{ max-width:305px; }
.service-ame img{ max-width:305px; }
.service-intuitive img{ max-width:320px; }
.service-bach img{ max-width:305px; }
.service-bol img{ max-width:300px; }
.service-soins img{ max-width:315px; }
.service-animal img{ max-width:310px; }
.service-enfants img{ max-width:300px; }

/* Temoignages */
.temoignages{
  background:var(--bg-soft);
}

.testimonials-grid{
  display:grid;
  gap:24px;
}

.testimonial{
  text-align:center;
}

.quote-icon{
  width:88px;
  height:88px;
  margin:0 auto 14px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--gold);
  border:2px solid rgba(221,176,65,0.25);
  font-size:2rem;
}

.testimonial h3{
  color:var(--turquoise);
  font-size:1.7rem;
  margin-bottom:10px;
}

.testimonial p{
  font-size:1.35rem;
  line-height:1.18;
}

.centered{
  text-align:center;
}

/* Reservation */
.reservation{
  background:#f5f1e8;
}

.reservation h3{
  color:var(--turquoise);
  font-size:1.9rem;
  margin:26px 0 14px;
}

.reservation p,
.reservation li,
label,
input,
textarea{
  font-size:1.35rem;
  line-height:1.18;
}

.reservation ol{
  padding-left:22px;
  margin:0 0 20px;
}

.booking-form{
  display:grid;
  gap:16px;
  margin-top:28px;
}

.field-row{
  display:grid;
  gap:16px;
}

.field{
  display:grid;
  gap:8px;
}

.field input,
.field textarea{
  width:100%;
  border:none;
  border-bottom:2px solid var(--gold);
  background:transparent;
  padding:10px 0;
  outline:none;
}

.field textarea{
  min-height:120px;
  resize:vertical;
}

.submit-btn{
  border:none;
  cursor:pointer;
}

/* Contact */
.contact{
  background:var(--blue);
  color:#fff;
  text-align:center;
}

.contact-title{
  color:var(--gold);
}

.contact p{
  font-size:1.4rem;
  line-height:1.18;
  margin-bottom:16px;
}

/* Footer */
footer{
  text-align:center;
  padding:20px;
  background:#0f226f;
  color:white;
  font-size:14px;
}

footer p{
  display:flex;
  flex-direction:column;
  gap:10px;
}

footer a{
  color:white;
}

/* TABLET */
@media (min-width: 768px){
  .header-inner{
    min-height:96px;
    padding:14px 22px;
  }

  .logo{
    width:120px;
  }

  .hero{
    background-image:url("bgwaitingpc.jpg");
    min-height:90vh;
    padding:120px 24px 150px;
  }

  .hero-script{
    font-size:4.6rem;
  }

 .hero-content h1{
  font-size:2.6rem;
}

  .hero-location{
    font-size:2.5rem;
  }

  .hero-subtitle{
    font-size:2.3rem;
  }

  .who-grid,
  .two-cols,
  .carto-grid,
  .field-row,
  .testimonials-grid,
  .services-grid{
    grid-template-columns:1fr 1fr;
  }

 .services-grid{
  grid-template-columns:repeat(2, 1fr);
  gap:24px 18px;
  margin-top:56px;
}

.service-visual{
  min-height:260px;
}

.service-visual img{
  max-width:360px;
}

.service-ecriture img{ max-width:330px; }
.service-oracles img{ max-width:350px; }
.service-hypnose img{ max-width:335px; }
.service-ame img{ max-width:340px; }
.service-intuitive img{ max-width:350px; }
.service-bach img{ max-width:335px; }
.service-bol img{ max-width:325px; }
.service-soins img{ max-width:345px; }
.service-animal img{ max-width:340px; }
.service-enfants img{ max-width:330px; }

  .who h2{
    font-size:4.4rem;
    text-align:left;
  }

  .who-text{
    text-align:left;
  }

  .who-image{
    width:min(100%, 350px);
  }

  .sun-img{
  max-width:420px;
}
}

/* DESKTOP */
@media (min-width: 1100px){
  .burger{
    display:none;
  }

  header{
    height:auto;
  }

.header-inner{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:end;
  column-gap:30px;
  padding:12px 28px 14px 28px;
}

nav{
  position:static;
  display:flex !important;
  flex-direction:row;
  justify-self:center;
  align-self:end;
  gap:20px;
  background:transparent;
  box-shadow:none;
  width:max-content;
  max-width:100%;
  max-height:none;
  overflow:visible;
  margin-left:0;
}
  nav a,
  .submenu-toggle{
    width:auto;
    border:none;
    padding:8px 6px;
    font-size:1.35rem;
  }

  .has-submenu{
    position:relative;
  }

  .submenu{
    position:absolute;
    top:100%;
    left:0;
    min-width:260px;
    box-shadow:var(--shadow);
    border-radius:16px;
    overflow:hidden;
  }

  .submenu a{
    padding:12px 16px;
  }

  .has-submenu:hover .submenu{
    display:flex;
  }

  .who-grid{
    grid-template-columns:360px 1fr;
    gap:60px;
    align-items:center;
  }

  .carto-grid{
    grid-template-columns:420px 1fr;
    gap:60px;
  }

  .services-grid{
  grid-template-columns:repeat(3, 1fr);
  gap:34px 26px;
  align-items:start;
}

.service-visual{
  min-height:300px;
  justify-content:center;
  align-items:center;
}

.service-visual img{
  max-width:380px;
}

/* ordre et tailles proches des captures */
.service-ecriture img{ max-width:340px; }
.service-oracles img{ max-width:370px; }
.service-hypnose img{ max-width:350px; }

.service-ame img{ max-width:360px; }
.service-intuitive img{ max-width:355px; }
.service-bach img{ max-width:350px; }

.service-bol img{ max-width:340px; }
.service-soins img{ max-width:350px; }
.service-animal img{ max-width:360px; }

.service-enfants{
  grid-column:1 / 2;
}
.service-enfants img{
  max-width:330px;
}
.sun-img{
  max-width:500px;
}
  .testimonials-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}


