/* ============================================
   LOUNABEILLE — Feuille de style commune
   ============================================ */

/* Google Fonts chargées via <link> dans chaque HTML pour éviter le render-blocking */

:root {
  --honey: #c8860a;
  --honey-light: #f4d06f;
  --dark: #1a1208;
  --brown: #5c3d11;
  --text: #3a2a0a;
  --cream: #faf5ea;
  --border: #e8d5a3;
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(250,245,234,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--dark); text-decoration: none;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--honey); }

/* ── PAGE INTÉRIEURE (légales, contenu) ── */
.page-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 140px 48px 100px;
}
.page-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: var(--dark);
  margin-bottom: 12px; line-height: 1.15;
}
.page-inner .page-subtitle {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--honey); margin-bottom: 48px;
}
.page-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--dark);
  margin: 40px 0 12px;
}
.page-inner h3 {
  font-size: 14px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--brown);
  margin: 24px 0 8px;
}
.page-inner p {
  font-size: 15px; line-height: 1.85; color: #5a4020;
  margin-bottom: 16px;
}
.page-inner ul, .page-inner ol {
  margin: 8px 0 16px 24px;
}
.page-inner li {
  font-size: 15px; line-height: 1.8; color: #5a4020;
  margin-bottom: 4px;
}
.page-inner a { color: var(--honey); text-decoration: none; }
.page-inner a:hover { text-decoration: underline; }
.page-inner .divider {
  height: 1px; background: var(--border); margin: 36px 0;
}
.page-inner strong { font-weight: 500; color: var(--brown); }

/* badge emoji intro */
.legal-intro {
  background: white; border: 1px solid var(--border);
  padding: 20px 28px; margin-bottom: 40px;
  font-size: 14px; color: #6b5330; line-height: 1.7;
}

/* ── SECTION CONTENU RICHE ── */
.content-section { padding: 100px 48px; }
.content-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--honey); margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: var(--dark);
  line-height: 1.15; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--honey); }
.section-desc { font-size: 15px; line-height: 1.85; color: #6b5330; margin-bottom: 32px; }

/* deux colonnes */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
/* trois colonnes */
.three-col {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}

/* carte info */
.info-card {
  background: white; border: 1px solid var(--border);
  padding: 36px 32px;
}
.info-card .card-icon {
  font-size: 28px; margin-bottom: 16px;
}
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--dark); margin-bottom: 12px;
}
.info-card p { font-size: 14px; line-height: 1.8; color: #6b5330; }

/* image pleine hauteur */
.content-img {
  width: 100%; height: 520px; object-fit: cover;
  box-shadow: 16px 16px 48px rgba(92,61,17,0.15);
}

/* divider */
.divider { max-width: 1100px; margin: 0 auto; height: 1px; background: var(--border); }
.divider-wrap { padding: 0 48px; }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: #c8b78a;
  padding: 60px 48px 32px;
}
.footer-newsletter {
  border-top: 1px solid #3a2e18; padding-top: 40px; margin-bottom: 48px;
}
.footer-newsletter-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-newsletter h4 {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--honey-light);
}
.newsletter-form { display: flex; flex: 1; max-width: 420px; }
.newsletter-form input {
  flex: 1; padding: 10px 16px; background: #2a200a;
  border: 1px solid #5c4520; color: white;
  font-family: 'Jost', sans-serif; font-size: 13px; outline: none;
}
.newsletter-form input::placeholder { color: #6b5530; }
.newsletter-form button {
  padding: 10px 24px; background: var(--honey); color: white; border: none;
  font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.newsletter-form button:hover { background: #a06a06; }

.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  color: white; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-desc { font-size: 13px; line-height: 1.8; color: #a0906a; }
.footer-contact h4, .footer-links h4 {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--honey-light); margin-bottom: 16px;
}
.footer-contact p, .footer-contact a {
  font-size: 13px; color: #a0906a; text-decoration: none;
  display: block; margin-bottom: 8px; transition: color 0.2s;
}
.footer-contact a:hover { color: var(--honey-light); }
.footer-links a {
  font-size: 12px; color: #a0906a; text-decoration: none;
  display: block; margin-bottom: 6px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--honey-light); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid #3a2e18; padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #6b5530; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 32px; height: 32px; border: 1px solid #5c4520;
  display: flex; align-items: center; justify-content: center;
  color: #a0906a; text-decoration: none; font-size: 13px; transition: all 0.2s;
}
.social-links a:hover { border-color: var(--honey); color: var(--honey); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .content-section { padding: 60px 24px; }
  .page-inner { padding: 120px 24px 60px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 24px 24px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .page-inner h1 { font-size: 32px; }
  .section-title { font-size: 32px; }
  .footer-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .divider-wrap { padding: 0 24px; }
}
