/* ═══════════════════════════════════════
   LOUZOU — Feuille de styles partagée
   ═══════════════════════════════════════ */

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

:root {
  --green:      #2FDA96;
  --green-dark: #1ABC9C;
  --teal:       #204147;
  --bg:         #f8f9fa;
  --white:      #ffffff;
  --text:       #204147;
  --muted:      #5a7278;
  --border:     #dde8ea;
  --red:        #e74c3c;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(32,65,71,.08);
  height: 72px;
  display: flex; align-items: center;
  padding: 0 48px; gap: 4px;
}

.navbar-logo {
  font-family: 'Amatic SC', cursive;
  font-size: 2rem; font-weight: 700;
  color: var(--teal); white-space: nowrap; flex-shrink: 0;
  margin-right: 20px;
}
.navbar-logo span { color: var(--green-dark); }

.navbar-nav {
  display: flex; align-items: center;
  gap: 2px; list-style: none; flex: 1;
}
.navbar-nav > li { position: relative; }

.navbar-nav > li > a {
  font-family: 'Sen', sans-serif;
  font-size: .87rem; font-weight: 600;
  color: var(--teal); padding: 8px 11px;
  border-radius: 8px; white-space: nowrap;
  transition: color .2s, background .2s;
  display: flex; align-items: center; gap: 4px;
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a.active { color: var(--green-dark); background: rgba(26,188,156,.07); }

.has-drop > a::after { content: ' ▾'; font-size: .75em; opacity: .6; }

/* dropdown */
.has-drop:hover .dropdown,
.has-drop.open .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(32,65,71,.15);
  min-width: 220px; padding: 8px 0;
  list-style: none;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s;
  z-index: 300;
}
.dropdown li a {
  display: block; padding: 10px 18px;
  font-family: 'Sen', sans-serif;
  font-size: .88rem; font-weight: 500; color: var(--teal);
  transition: color .15s, background .15s;
}
.dropdown li a:hover { color: var(--green-dark); background: rgba(26,188,156,.06); }

/* sub-dropdown (niveau 2) */
.dropdown li.has-drop2 { position: relative; }
.dropdown li.has-drop2 > a::after { content: ' ›'; float: right; }
.dropdown li.has-drop2:hover .dropdown2 { opacity: 1; pointer-events: auto; transform: translateX(0); }
.dropdown2 {
  position: absolute; left: 100%; top: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(32,65,71,.15);
  min-width: 220px; padding: 8px 0;
  list-style: none;
  opacity: 0; pointer-events: none;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
  z-index: 301;
}
.dropdown2 li a { display: block; padding: 10px 18px; font-family:'Sen',sans-serif; font-size:.88rem; font-weight:500; color:var(--teal); transition: color .15s, background .15s; }
.dropdown2 li a:hover { color: var(--green-dark); background: rgba(26,188,156,.06); }

.navbar-cta {
  margin-left: auto; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 18px rgba(26,188,156,.30);
  font-weight: 700 !important;
  transition: transform .2s, box-shadow .2s;
}
.navbar-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(26,188,156,.4); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; padding: 4px; }
.burger span { width: 24px; height: 2px; background: var(--teal); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #e6f9f3 0%, #d0ede7 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://louzou.fr/wp-content/uploads/2025/02/Tartelettes-3-4-pour-Blog-1.jpg');
  background-size: cover; background-position: center;
}
.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(230,249,243,.97) 0%, rgba(208,237,231,.88) 48%, rgba(208,237,231,.15) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 90px 48px 80px;
  display: grid; grid-template-columns: 58% 42%;
  align-items: center; gap: 40px; min-height: 88vh;
}
.hero-tag { display:inline-block; font-family:'Caveat',cursive; font-size:1.25rem; color:var(--green-dark); margin-bottom:14px; }
.hero-title { font-family:'Amatic SC',cursive; font-size:clamp(2.8rem,5.5vw,4.8rem); font-weight:700; line-height:1.1; color:var(--teal); margin-bottom:22px; }
.hero-title em { font-style:normal; color:var(--green-dark); }
.hero-sub { font-family:'Sen',sans-serif; font-size:1.1rem; font-weight:600; color:var(--teal); margin-bottom:14px; }
.hero-desc { font-size:1.05rem; line-height:1.8; color:var(--muted); margin-bottom:36px; max-width:500px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
.hero-img-wrap { display:flex; justify-content:center; align-items:center; }
.hero-img { width:100%; max-width:420px; border-radius:30px; object-fit:cover; aspect-ratio:3/4; box-shadow:0 24px 64px rgba(32,65,71,.2); }

/* ─── PAGE HERO (sous-pages) ─── */
.page-hero {
  background: linear-gradient(135deg, #e6f9f3 0%, #d0ede7 100%);
  padding: 72px 48px 56px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-family:'Amatic SC',cursive; font-size:clamp(2.5rem,5vw,4rem); font-weight:700; color:var(--teal); margin-bottom:16px; line-height:1.15; }
.page-hero p { font-size:1.1rem; line-height:1.8; color:var(--muted); max-width:640px; margin:0 auto; }

/* ─── WAVE ─── */
.wave { display:block; width:100%; overflow:hidden; line-height:0; margin-top:-2px; }
.wave svg { display:block; width:100%; }

/* ─── SECTIONS ─── */
.section { padding: 80px 48px; }
.section--bg { background: var(--bg); }
.section--teal { background: var(--teal); }
.container { max-width: 1200px; margin: 0 auto; }

.eyebrow { font-family:'Caveat',cursive; font-size:1.3rem; color:var(--green-dark); display:block; margin-bottom:6px; }
.eyebrow--light { color: var(--green); }

.section-title { font-family:'Amatic SC',cursive; font-size:clamp(2rem,4vw,3rem); font-weight:700; line-height:1.2; color:var(--teal); margin-bottom:14px; }
.section-title--light { color: var(--white); }

.section-desc { font-size:1.05rem; line-height:1.8; color:var(--muted); max-width:620px; }
.section-desc--light { color: rgba(255,255,255,.78); }

.text-center { text-align:center; }
.text-center .section-desc { margin: 0 auto; }

/* ─── BOUTONS ─── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Sen',sans-serif; font-weight:700; font-size:.97rem;
  padding:13px 30px; border-radius:50px;
  transition:transform .2s, box-shadow .2s;
  cursor:pointer; border:none; white-space:nowrap;
}
.btn-green {
  background:linear-gradient(135deg,var(--green) 0%,var(--green-dark) 100%);
  color:var(--white); box-shadow:0 4px 20px rgba(26,188,156,.30);
}
.btn-green:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(26,188,156,.42); }
.btn-outline { background:transparent; color:var(--teal); border:2px solid var(--teal); }
.btn-outline:hover { background:var(--teal); color:var(--white); transform:translateY(-2px); }
.btn-white { background:var(--white); color:var(--green-dark); box-shadow:0 4px 20px rgba(0,0,0,.14); }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(0,0,0,.2); }
.btn-sm { padding:10px 22px; font-size:.88rem; }

/* ─── GRILLES ─── */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.two-col.reverse .col-img-wrap { order:2; }
.two-col.reverse .col-text    { order:1; }

.col-img { width:100%; border-radius:60px; object-fit:cover; aspect-ratio:4/3; box-shadow:0 16px 48px rgba(32,65,71,.13); transition:transform .3s; }
.col-img:hover { transform:scale(1.02); }
.col-img--book { border-radius:20px; }
.col-text .section-desc { margin: 16px 0 28px; }
.col-text p + p { margin-top: 12px; }
.col-text ul { list-style:none; margin-bottom:28px; display:flex; flex-direction:column; gap:12px; }
.col-text ul li { display:flex; align-items:flex-start; gap:12px; font-size:.97rem; line-height:1.6; color:var(--muted); }
.col-text ul li::before { content:'→'; color:var(--green-dark); flex-shrink:0; }

.cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:52px; }
.cards-grid--2 { grid-template-columns:repeat(2,1fr); }

/* ─── CARDS ─── */
.card {
  background:var(--white); border-radius:20px; overflow:hidden;
  box-shadow:0 9px 32px rgba(0,0,0,.07);
  transition:transform .25s, box-shadow .25s;
  display:flex; flex-direction:column;
}
.card:hover { transform:translateY(-6px); box-shadow:0 18px 48px rgba(0,0,0,.12); }
.card-img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.card-img--tall { aspect-ratio:3/4; }
.card-body { padding:28px 28px 32px; flex:1; display:flex; flex-direction:column; }
.card-tag {
  display:inline-block;
  background:rgba(26,188,156,.12); color:var(--green-dark);
  font-family:'Sen',sans-serif; font-weight:700; font-size:.78rem;
  text-transform:uppercase; letter-spacing:1px;
  padding:4px 14px; border-radius:50px; margin-bottom:14px;
  width:fit-content;
}
.card-title { font-family:'Sen',sans-serif; font-size:1.1rem; font-weight:800; color:var(--teal); line-height:1.35; margin-bottom:10px; }
.card-desc { font-size:.95rem; color:var(--muted); line-height:1.7; margin-bottom:24px; flex:1; }
.card-number { width:44px; height:44px; border-radius:50%; background:var(--red); display:flex; align-items:center; justify-content:center; color:var(--white); font-family:'Sen',sans-serif; font-weight:800; font-size:1.1rem; margin-bottom:18px; }
.card-divider { border:none; border-top:2px dashed var(--border); margin:14px 0; }

/* ─── ÉQUIPE ─── */
.team-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-top:52px; }
.team-card { background:var(--white); border-radius:24px; box-shadow:0 9px 32px rgba(0,0,0,.07); display:flex; align-items:center; gap:32px; padding:32px; transition:transform .25s; }
.team-card:hover { transform:translateY(-4px); }
.team-avatar { width:140px; height:140px; border-radius:50%; object-fit:cover; flex-shrink:0; border:4px solid rgba(26,188,156,.25); }
.team-name { font-family:'Amatic SC',cursive; font-size:2rem; font-weight:700; color:var(--teal); margin-bottom:6px; }
.team-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:12px; }
.team-tag { background:rgba(26,188,156,.1); color:var(--green-dark); font-family:'Sen',sans-serif; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.8px; padding:4px 12px; border-radius:50px; }
.team-desc { font-size:.95rem; color:var(--muted); line-height:1.65; }

/* ─── TÉMOIGNAGES ─── */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.testi-card { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-radius:20px; padding:28px; }
.testi-quote { font-size:2.5rem; color:var(--green); line-height:1; margin-bottom:10px; }
.testi-text { font-size:.97rem; line-height:1.75; color:rgba(255,255,255,.88); margin-bottom:20px; }
.testi-divider { border:none; border-top:2px dashed rgba(255,255,255,.18); margin-bottom:18px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-name { font-family:'Sen',sans-serif; font-weight:700; color:var(--white); font-size:.9rem; }

/* ─── EBOOK / NEWSLETTER ─── */
.ebook-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.ebook-img { width:100%; max-width:360px; border-radius:20px; box-shadow:0 20px 60px rgba(32,65,71,.18); margin:0 auto; display:block; }
.ebook-text .section-desc { margin:16px 0 28px; }
.email-form { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.email-form input[type="email"] {
  flex:1 1 200px; padding:13px 20px; border-radius:50px;
  border:2px solid var(--border); font-family:'DM Sans',sans-serif;
  font-size:.97rem; color:var(--text); background:var(--white);
  outline:none; transition:border-color .2s;
}
.email-form input[type="email"]:focus { border-color:var(--green-dark); }
.email-form input[type="email"]::placeholder { color:var(--muted); opacity:.7; }

/* ─── LOGOS PARTENAIRES ─── */
.logos-row { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:32px; margin-top:48px; }
.partner-logo { height:52px; width:auto; object-fit:contain; filter:grayscale(1); opacity:.65; transition:filter .25s, opacity .25s, transform .25s; }
.partner-logo:hover { filter:grayscale(0); opacity:1; transform:scale(1.05); }

/* ─── CONTACT FORM ─── */
.contact-form { display:flex; flex-direction:column; gap:16px; }
.contact-form label { font-family:'Sen',sans-serif; font-weight:600; font-size:.9rem; color:var(--teal); margin-bottom:4px; display:block; }
.contact-form input, .contact-form textarea {
  width:100%; padding:13px 18px; border-radius:14px;
  border:2px solid var(--border); font-family:'DM Sans',sans-serif;
  font-size:.97rem; color:var(--text); background:var(--white);
  outline:none; transition:border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color:var(--green-dark); }
.contact-form textarea { resize:vertical; min-height:140px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact-info { background:var(--bg); border-radius:24px; padding:36px 32px; }
.contact-info h3 { font-family:'Amatic SC',cursive; font-size:1.8rem; font-weight:700; color:var(--teal); margin-bottom:24px; }
.contact-info p { font-size:.97rem; color:var(--muted); line-height:1.8; margin-bottom:16px; }
.contact-info strong { color:var(--teal); }
.contact-info a { color:var(--green-dark); }
.contact-info a:hover { text-decoration:underline; }

/* ─── CTA BANNER ─── */
.cta-banner { background:linear-gradient(135deg,var(--green) 0%,var(--green-dark) 100%); padding:80px 48px; text-align:center; }
.cta-banner .section-title { color:var(--white); }
.cta-banner .section-desc { color:rgba(255,255,255,.9); margin:0 auto 40px; }

/* ─── FOOTER ─── */
footer { background:var(--teal); color:rgba(255,255,255,.8); }
.footer-inner { max-width:1200px; margin:0 auto; padding:64px 48px 36px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-brand-logo { font-family:'Amatic SC',cursive; font-size:2rem; font-weight:700; color:var(--white); display:block; margin-bottom:14px; }
.footer-brand-logo span { color:var(--green); }
.footer-brand p { font-size:.93rem; line-height:1.75; margin-bottom:20px; }
.social-row { display:flex; gap:12px; }
.social-btn { width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; color:var(--white); font-size:.85rem; font-weight:700; transition:background .2s, transform .2s; }
.social-btn:hover { background:var(--green); transform:translateY(-2px); }
.footer-col h4 { font-family:'Sen',sans-serif; font-weight:700; color:var(--white); font-size:1rem; margin-bottom:18px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { font-size:.9rem; color:rgba(255,255,255,.65); transition:color .2s; }
.footer-col ul a:hover { color:var(--green); }
.footer-contact { font-size:.9rem; color:rgba(255,255,255,.65); line-height:2; }
.footer-contact strong { color:rgba(255,255,255,.9); }
.footer-contact a { color:var(--green); }
.footer-bottom { padding-top:28px; display:flex; justify-content:space-between; align-items:center; font-size:.85rem; color:rgba(255,255,255,.4); flex-wrap:wrap; gap:10px; }
.footer-bottom a { color:rgba(255,255,255,.5); transition:color .2s; }
.footer-bottom a:hover { color:var(--green); }

/* ─── RESPONSIVE ─── */
@media (max-width:1023px) {
  .navbar { padding:0 24px; }
  .cards-grid { grid-template-columns:1fr 1fr; }
  .cards-grid--2 { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr 1fr; }
  .team-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .two-col, .ebook-grid { grid-template-columns:1fr; gap:40px; }
  .two-col.reverse .col-img-wrap, .two-col.reverse .col-text { order:unset; }
  .hero-inner { grid-template-columns:1fr; min-height:unset; padding:64px 24px; }
  .hero-img-wrap { display:none; }
  .section { padding:60px 24px; }
  .page-hero { padding:56px 24px 44px; }
  .cta-banner { padding:60px 24px; }
}

@media (max-width:767px) {
  .navbar { padding:0 20px; height:64px; }
  .navbar-nav { display:none; flex-direction:column; position:fixed; top:64px; left:0; right:0; bottom:0; background:var(--white); overflow-y:auto; padding:20px; box-shadow:0 8px 24px rgba(0,0,0,.1); z-index:199; gap:0; }
  .navbar-nav.open { display:flex; }
  .navbar-nav > li > a { padding:14px 4px; border-bottom:1px solid var(--border); font-size:1rem; border-radius:0; }
  .navbar-cta { display:none !important; }
  .burger { display:flex; }
  .dropdown { position:static; opacity:1; pointer-events:auto; transform:none; box-shadow:none; border-radius:0; padding:0 0 0 20px; }
  .dropdown li a { padding:10px 4px; border-bottom:1px solid var(--border); }
  .dropdown2 { position:static; opacity:1; pointer-events:auto; transform:none; box-shadow:none; border-radius:0; padding:0 0 0 20px; }
  .cards-grid, .testimonials-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-inner { padding:48px 20px 28px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .team-card { flex-direction:column; text-align:center; }
  .team-tags { justify-content:center; }
}
