/* ================================================
   GINKGO THEME – Palette chaleureuse + feuilles
   Inspirée du portrait de Mylène Zizzo
   Couleurs : crème dorée · sauge · or ambré · brun chaud
   ================================================ */

/* ── Palette rechaufée ── */
:root {
  --bg-light:     #FDFAF4;
  --bg-cream:     #F6EDDA;
  --bg-pale:      #EDE4CC;

  --text-dark:    #3B2512;
  --text-medium:  #6A5242;
  --text-light:   #9E867A;

  --sage:         #7A9A65;
  --sage-light:   #ABBD90;
  --sage-dark:    #556E42;

  --accent:       #C49A5E;
  --accent-light: #E8C98A;

  --shadow-sm: 0 2px 10px rgba(59, 37, 18, 0.07);
  --shadow-md: 0 4px 18px rgba(59, 37, 18, 0.10);
  --shadow-lg: 0 8px 36px rgba(59, 37, 18, 0.14);
}

/* ── Corps global ── */
body {
  background: var(--bg-light);
}

/* ── Cards : fond légèrement ivoire ── */
.service-card,
.temoignage-card,
.ressource-card,
.principle-card {
  background: #FEFCF6;
}

.tip-item {
  background: #F0EAD8;
}

/* ── Hero homepage : feuilles en arrière-plan ── */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* Feuille gauche grande */
.hero-section::before {
  width: 260px;
  height: 320px;
  bottom: -30px;
  left: -40px;
  opacity: 0.08;
  transform: rotate(15deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 82'%3E%3Cpath d='M32,60 C14,56 2,40 4,23 C6,9 18,1 30,4 C31,4 32,5 32,5 Z' fill='%237A9A65'/%3E%3Cpath d='M32,60 C50,56 62,40 60,23 C58,9 46,1 34,4 C33,4 32,5 32,5 Z' fill='%237A9A65'/%3E%3Cpath d='M32,60 L32,80' stroke='%237A9A65' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

/* Feuille droite petite */
.hero-section::after {
  width: 160px;
  height: 195px;
  top: 40px;
  right: 5%;
  opacity: 0.07;
  transform: rotate(-22deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 82'%3E%3Cpath d='M32,60 C14,56 2,40 4,23 C6,9 18,1 30,4 C31,4 32,5 32,5 Z' fill='%237A9A65'/%3E%3Cpath d='M32,60 C50,56 62,40 60,23 C58,9 46,1 34,4 C33,4 32,5 32,5 Z' fill='%237A9A65'/%3E%3Cpath d='M32,60 L32,80' stroke='%237A9A65' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

/* ── Page-hero : feuille droite ── */
.page-hero {
  position: relative;
  overflow: visible;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 110px;
  height: 135px;
  top: -10px;
  right: -20px;
  opacity: 0.10;
  transform: rotate(18deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 82'%3E%3Cpath d='M32,60 C14,56 2,40 4,23 C6,9 18,1 30,4 C31,4 32,5 32,5 Z' fill='%237A9A65'/%3E%3Cpath d='M32,60 C50,56 62,40 60,23 C58,9 46,1 34,4 C33,4 32,5 32,5 Z' fill='%237A9A65'/%3E%3Cpath d='M32,60 L32,80' stroke='%237A9A65' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* ── Séparateurs de section : petite feuille centrée ── */
.section-divider-ginkgo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 2.5rem 0;
  color: var(--sage-light);
}

.section-divider-ginkgo::before,
.section-divider-ginkgo::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sage-light), transparent);
}

/* ── Catégories ressources : teinte sauge ── */
.cat-btn:hover,
.cat-btn.active {
  border-color: var(--sage);
  background: var(--sage);
  color: #fff;
}

.ress-cat {
  color: var(--sage-dark);
}

/* ── Avatars témoignages : dégradé chaud ── */
.temo-avatar {
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
}

/* ── Étoiles : or ambré ── */
.temo-stars {
  color: var(--accent);
}

/* ── Footer : fond brun chaud profond ── */
.site-footer {
  background: #2A1A0A;
}

/* ── Feuilles décoratives footer ── */
.footer-ginkgo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0.22;
}

.footer-ginkgo svg {
  width: 28px;
  height: 35px;
  color: var(--sage-light);
}

/* ── Header nav : teinte sauge sur hover ── */
.site-header .nav-item.active > a {
  color: var(--primary);
}

/* ── Icônes de ress-icon : variante sauge ── */
.ress-icon.sage {
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
}

/* ── Bandeau hero : fond rechaufé ── */
.hero-content {
  position: relative;
  z-index: 1;
}

/* ── Accent sur titre de section ── */
.section-title::after {
  background: linear-gradient(90deg, var(--primary), var(--sage));
}

/* ── Responsive : masquer feuilles sur petit écran ── */
@media (max-width: 480px) {
  .page-hero::after {
    width: 70px;
    height: 85px;
    right: -8px;
    opacity: 0.07;
  }

  .hero-section::before {
    width: 160px;
    height: 195px;
    opacity: 0.06;
  }

  .hero-section::after {
    display: none;
  }
}
