/* ============================================================
   Encas Créole 83 — Page d'accueil / Présentation
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--encre);
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--gutter) 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--piment) 0%, transparent 70%);
  opacity: 0.1;
  top: -200px; right: -150px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--soleil) 0%, transparent 70%);
  opacity: 0.08;
  bottom: -100px; left: -100px;
  pointer-events: none;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--soleil);
  opacity: 0.75;
  margin-bottom: 24px;
  position: relative;
}

.hero-titre {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 13vw, 6.5rem);
  line-height: 0.9;
  color: var(--papier);
  margin-bottom: 20px;
  position: relative;
}

.hero-titre-accent {
  color: var(--soleil);
  display: block;
}

.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--papier);
  opacity: 0.65;
  max-width: 420px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--piment);
  color: #fff;
  border: 3px solid var(--piment);
  border-radius: var(--rayon-sm);
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 6px 6px 0 rgba(255, 210, 63, 0.2);
  transition: transform var(--tr-vite), box-shadow var(--tr-vite);
  text-decoration: none;
  position: relative;
  margin-bottom: 28px;
}
.hero-cta:hover  { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 rgba(255,210,63,.2); }
.hero-cta:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(255,210,63,.2); }

.hero-statut {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--papier);
  opacity: 0.5;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  position: relative;
  transition: opacity 0.3s;
}
.hero-statut.ouvert { opacity: 0.9; }
.hero-statut.ferme  { opacity: 0.7; }

.hero-statut-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: background 0.3s;
}
.hero-statut.ouvert .hero-statut-dot {
  background: var(--canne);
  box-shadow: 0 0 0 3px rgba(31,168,92,.3);
}
.hero-statut.ferme .hero-statut-dot { background: var(--piment); }

/* ── SECTION COMMUNE ─────────────────────────────────────── */
.lp-section { padding: 72px var(--gutter); }

.lp-inner {
  max-width: var(--cont-max);
  margin: 0 auto;
}

.lp-titre {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  text-align: center;
  margin-bottom: 8px;
  color: var(--encre);
}

.lp-sous-titre {
  text-align: center;
  font-size: 0.98rem;
  opacity: 0.6;
  margin-bottom: 48px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ── ÉTAPES ──────────────────────────────────────────────── */
.lp-section.bg-clair { background: var(--papier-2); }

.etapes-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.etape-card {
  background: var(--papier);
  border: var(--bord);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 32px 20px 24px;
  text-align: center;
  position: relative;
}
.etape-card:nth-child(1) { transform: rotate(-0.8deg); }
.etape-card:nth-child(2) { transform: rotate(0.5deg); margin-top: 8px; }
.etape-card:nth-child(3) { transform: rotate(-0.4deg); }

.etape-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  background: var(--piment);
  color: #fff;
  border: 3px solid var(--encre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 0.95rem;
  box-shadow: 3px 3px 0 var(--encre);
}

.etape-icone {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 14px;
}

.etape-titre {
  font-weight: 700;
  font-size: 1rem;
  color: var(--encre);
  margin-bottom: 8px;
}

.etape-desc {
  font-size: 0.82rem;
  opacity: 0.6;
  line-height: 1.5;
  color: var(--encre);
}

/* ── NOTRE CUISINE ───────────────────────────────────────── */
.lp-section.bg-sombre {
  background: var(--encre);
  color: var(--papier);
}
.lp-section.bg-sombre .lp-titre  { color: var(--papier); }
.lp-section.bg-sombre .lp-sous-titre { color: rgba(245,237,213,0.5); }

.cuisine-grille {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cuisine-card {
  border: 2px solid rgba(245,237,213,0.12);
  border-radius: var(--rayon);
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
}

.cuisine-emoji { font-size: 2.6rem; margin-bottom: 14px; display: block; }

.cuisine-nom {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--soleil);
  margin-bottom: 10px;
}

.cuisine-desc {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.65;
  color: var(--papier);
}

/* ── INFOS PRATIQUES ─────────────────────────────────────── */
.infos-grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--papier);
  border: var(--bord);
  border-radius: var(--rayon);
  box-shadow: var(--ombre-sm);
  padding: 24px;
}

.info-card-titre {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--encre);
}

.info-texte {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--encre);
  opacity: 0.72;
}
.info-texte strong { opacity: 1; }

.info-tel,
.info-maps,
.info-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}
.info-tel      { color: var(--piment); }
.info-maps     { color: var(--canne); font-size: 0.88rem; }
.info-whatsapp { color: #25D366; }
.info-tel:hover,
.info-maps:hover,
.info-whatsapp:hover { text-decoration: underline; }

/* ── CTA FINALE ──────────────────────────────────────────── */
.lp-cta {
  text-align: center;
  padding: 72px var(--gutter);
  background: var(--papier);
  border-top: var(--bord);
  border-bottom: var(--bord);
}

.lp-cta-titre {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 24px;
  color: var(--encre);
}

.btn-cta-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 44px;
  background: var(--piment);
  color: #fff;
  border: var(--bord);
  border-color: var(--piment);
  border-radius: var(--rayon-sm);
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--ombre);
  transition: transform var(--tr-vite), box-shadow var(--tr-vite);
  text-decoration: none;
}
.btn-cta-lg:hover  { transform: translate(-2px, -2px); box-shadow: var(--ombre-lg); }
.btn-cta-lg:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--encre); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--encre);
  color: var(--papier);
  text-align: center;
  padding: 36px var(--gutter);
  border-top: var(--bord);
}

.footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--papier);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.15s;
}
.footer-nav a:hover { opacity: 0.9; }

.footer-mentions {
  font-size: 0.75rem;
  opacity: 0.35;
  margin-top: 6px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 560px) {
  .etapes-grille  { grid-template-columns: 1fr; }
  .etape-card     { transform: none !important; margin-top: 0 !important; }
  .cuisine-grille { grid-template-columns: 1fr; }
}

@media (min-width: 768px) {
  .hero { min-height: 85vh; }
}

@media (prefers-reduced-motion: reduce) {
  .etape-card { transform: none !important; }
  .hero-cta, .btn-cta-lg { transition: none; }
}
