@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Nanum+Myeongjo:wght@400;700&family=Londrina+Shadow&family=Lacquer&display=swap');

@font-face {
  font-family: 'Kokoro';
  src: url('../assets/kokorotrial-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Kokoro';
  src: url('../assets/kokorotrial-italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Kokoro';
  src: url('../assets/kokorotrial-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Kokoro';
  src: url('../assets/kokorotrial-bolditalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

/* === VARIABLES === */
:root {
  --primary: #7A3225;
  --accent: #CC5E35;
  --yellow: #F2CA52;
  --yellow-light: #FBF0C0;
  --bg: #F5EFE4;
  --text: #2D1B0E;
  --white: #FFFFFF;
  --radius: 1.25rem;

  --font-body: 'Kokoro', sans-serif;
  --font-logo: 'Limelight', cursive;
  --font-hero: 'Nanum Myeongjo', serif;
  --font-shadow: 'Londrina Shadow', cursive;
  --font-section: 'Lacquer', cursive;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 200;
}

.navbar-logo {
  height: 36px;
  width: auto;
  filter: none;
}

.navbar-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--white);
  transition: opacity 0.2s;
}

.navbar-links a:hover { opacity: 0.75; }

.btn-rdv {
  background: var(--white);
  color: var(--accent) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}

.btn-rdv:hover { opacity: 0.85; }

.burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--primary);
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  z-index: 190;
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 0.5rem;
  background: var(--white);
  color: var(--accent);
  text-align: center;
  border-radius: 999px;
  padding: 0.75rem;
}

@media (min-width: 768px) {
  .burger { display: none; }
  .navbar-links { display: flex; }
}

/* === BOUTONS === */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 2.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.85; }

.btn-accent { background: var(--accent); }

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.25rem;
  background: var(--yellow);
  color: var(--text);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  z-index: 100;
  text-decoration: none;
  line-height: 1;
}

.scroll-top.visible { display: flex; }

/* === FOOTER === */
footer {
  background: var(--bg);
  text-align: center;
  padding: 2.5rem 1.5rem 1.5rem;
}

.footer-enfants {
  width: 140px;
  margin: 0 auto 1rem;
}

footer a {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  display: inline-block;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

/* ========================================
   PAGE 1 — ACCUEIL
   ======================================== */

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}

/* Fond splitté : photo gauche | rayures droite */
.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero-photo {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
}

.hero-stripes {
  flex: 1;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}

/* Contenu par-dessus le fond */
.hero-content {
  position: relative;
  z-index: 1;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}

/* "PULICANI JULIE" centré sur toute la page */
.hero-name {
  font-family: var(--font-logo);
  font-size: 40px;
  color: var(--accent);
  text-align: center;
  width: 100%;
  line-height: 1.1;
  padding: 3rem 0 2rem;
}

/* Texte, CTA et enfants — ancrés sur la moitié droite (les rayures) */
.hero-text {
  margin-left: 50%;
  padding: 0 2.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-title-wrap {
  position: relative;
  width: 525px;
  max-width: 100%;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-hero);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.2;
  color: var(--primary);
}

.hero-deco {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-70%);
  width: 42px;
  pointer-events: none;
}

.hero-desc {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
  max-width: 469px;
}

.hero-cta-wrap {
  width: 525px;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.hero-enfants {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  width: 220px;
  height: auto;
  object-fit: contain;
}

/* Mobile : empilé */
@media (max-width: 899px) {
  .hero {
    position: static;
    min-height: auto;
  }

  .hero-bg {
    position: static;
    flex-direction: column;
  }

  .hero-photo {
    width: 100%;
    height: 260px;
  }

  .hero-stripes {
    display: none;
  }

  .hero-content {
    position: static;
    min-height: auto;
    background: var(--bg);
  }

  .hero-name {
    padding: 2rem 0 1.25rem;
  }

  .hero-text {
    width: 100%;
    align-self: auto;
    padding: 0 1.5rem 2rem;
  }
}

/* Section "Ça vous parle ?" */
.parle-section {
  padding: 3rem 1.5rem;
}

.parle-header {
  margin-bottom: 2rem;
}

.parle-header h2 {
  font-family: var(--font-shadow);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.parle-header p {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.parle-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.parle-card {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.parle-num {
  font-family: var(--font-section);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.parle-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.parle-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .parle-cards { grid-template-columns: repeat(3, 1fr); }
}

/* Section quote + photo */
.quote-section {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.quote-block {
  position: relative;
  text-align: center;
}

.quote-text {
  font-family: var(--font-hero);
  font-size: clamp(1.2rem, 4vw, 1.75rem);
  color: var(--primary);
  font-style: italic;
  line-height: 1.4;
}

.quote-eclair {
  width: 60px;
  margin: 1.25rem auto 0;
}

.quote-photo {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius);
  object-fit: cover;
}

@media (min-width: 768px) {
  .quote-section {
    flex-direction: row;
    padding: 3rem 4rem;
    justify-content: space-between;
    gap: 3rem;
  }

  .quote-block { flex: 1; text-align: left; }
  .quote-eclair { margin: 1.25rem 0 0; }
  .quote-photo { max-width: 380px; }
}

/* Section Mon Approche (aperçu homepage) */
.approche-home {
  padding: 3rem 1.5rem;
}

.approche-home-header {
  margin-bottom: 2rem;
}

.approche-home-header h2 {
  font-family: var(--font-section);
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.approche-home-header p {
  font-size: 0.9rem;
}

.approche-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.approche-card {
  border: 2.5px dashed var(--yellow);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--white);
}

.approche-card-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.approche-card-num {
  background: var(--yellow);
  color: var(--primary);
  font-family: var(--font-section);
  font-size: 0.85rem;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.approche-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.approche-card .italic {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.approche-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .approche-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .approche-cards { grid-template-columns: repeat(3, 1fr); }
}

/* FAQ */
.faq-section {
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .faq-section { flex-direction: row; gap: 3rem; padding: 3rem 4rem; align-items: flex-start; }
}

.faq-photo {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  flex-shrink: 0;
}

.faq-content { flex: 1; }

.faq-content h2 {
  font-family: var(--font-section);
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.faq-item {
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--accent);
}

.faq-item.open .faq-answer { display: block; }

/* ========================================
   PAGE QUI SUIS-JE
   ======================================== */

.qsj-section {
  padding: 3rem 1.5rem;
}

.qsj-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.qsj-header h1 {
  font-family: var(--font-section);
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--primary);
}

.qsj-questions-deco {
  width: 80px;
  flex-shrink: 0;
  margin-top: -10px;
}

.qsj-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.qsj-portrait {
  width: 200px;
  flex-shrink: 0;
  margin: 0 auto;
}

.qsj-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.qsj-highlight {
  color: var(--accent);
  font-weight: 600;
  font-style: italic;
}

.qsj-cta {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .qsj-section { padding: 4rem; }

  .qsj-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .qsj-portrait {
    width: 220px;
    margin: 0;
  }
}

/* ========================================
   PAGE MON APPROCHE
   ======================================== */

.approche-page {
  padding: 2.5rem 1.5rem;
}

.approche-intro {
  margin-bottom: 3rem;
}

.approche-intro h2 {
  font-family: var(--font-section);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.approche-intro p {
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 680px;
}

.approche-pratique {
  background: var(--yellow-light);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 3rem;
}

.approche-pratique h2 {
  font-family: var(--font-section);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.approche-pratique ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.approche-pratique ul li::before {
  content: '→ ';
  color: var(--accent);
  font-weight: 700;
}

.approche-split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.approche-split-text h3 {
  font-family: var(--font-section);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.approche-split-photo {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius);
  object-fit: cover;
}

@media (min-width: 768px) {
  .approche-page { padding: 4rem; }

  .approche-split {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }

  .approche-split-text { flex: 1; }
}

/* Déroulement */
.deroulement {
  margin-bottom: 3rem;
}

.deroulement h2 {
  font-family: var(--font-section);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--primary);
  margin-bottom: 1.75rem;
  text-align: center;
}

.seance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .seance-grid { grid-template-columns: repeat(2, 1fr); }
}

.seance-card {
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
}

.seance-card h3 {
  font-family: var(--font-section);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.seance-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.seance-card .prix {
  font-family: var(--font-section);
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 1rem;
}

.seance-card ul {
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.65;
}

.seance-card ul li::before {
  content: '• ';
  color: var(--accent);
}

/* Accordion étapes */
.etapes {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.etape-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--yellow);
}

.etape-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.etape-trigger span.label {
  font-family: var(--font-section);
  font-size: 1rem;
  color: var(--primary);
}

.etape-trigger span.icon {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.etape-item.open .etape-trigger span.icon { transform: rotate(45deg); }

.etape-body {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.etape-item.open .etape-body { display: block; }

.prix-final {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.prix-final strong {
  font-family: var(--font-section);
  font-size: 1.2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

/* ========================================
   PAGE CONTACT
   ======================================== */

.contact-page {
  padding: 3rem 1.5rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-page h1 {
  background: var(--yellow);
  color: var(--text);
  display: inline-block;
  padding: 0.45rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-section);
  font-size: clamp(1.5rem, 5vw, 2rem);
  margin-bottom: 2.5rem;
}

.contact-card {
  border: 2.5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--white);
  max-width: 560px;
  width: 100%;
}

.contact-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-info a:hover { color: var(--accent); }

.contact-info .tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.contact-icon {
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .contact-page { padding: 4rem; }
}

/* Stripes footer decoration */
.stripes-footer {
  width: 100%;
  height: 80px;
  object-fit: cover;
  object-position: top;
  opacity: 0.5;
  margin-top: auto;
}
