/* ── PAGE HEADER COMMUN ── */
.page-header { background: #fff; padding: 64px 0 28px; position: relative; overflow: hidden; }
.page-header h1 { font-family: var(--serif); font-size: clamp(32px, 5vw, 56px); color: var(--dark); line-height: 1.1; }
.page-header h1 em { font-style: italic; color: var(--hot); }

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hot:    #f10560;
  --pink:   #f7acba;
  --blush:  #ffe3e9;
  --cream:  #fff7d3;
  --dark:   #830030;
  --ink:    #1a0010;
  --gray:   #888;
  --radius: 999px;
  --card-r: 20px;
  --font:   'Nunito', sans-serif;
  --serif:  'Playfair Display', serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── PILL & SECTIONS ── */
.pill {
  display: inline-block; background: var(--blush); color: var(--hot);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--radius); margin-bottom: 12px;
}

.section-title { font-family: var(--serif); font-size: clamp(26px, 4vw, 36px); color: var(--dark); line-height: 1.2; margin-bottom: 8px; }
.section-sub { font-size: 15px; color: var(--gray); max-width: 520px; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius); font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: transform 0.15s, box-shadow 0.15s; }
.btn:hover { transform: translateY(-2px); }
.btn-hot { background: var(--hot); color: #fff; box-shadow: 0 4px 20px rgba(241,5,96,0.3); }
.btn-hot:hover { box-shadow: 0 6px 24px rgba(241,5,96,0.4); }
.btn-outline { background: #fff; color: var(--dark); border: 2px solid var(--pink); }
.btn-outline:hover { background: var(--blush); }

/* ── NAV ── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(247,172,186,0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--dark); transition: color 0.15s; }
.nav-links a:hover { color: var(--hot); }
.nav-cta { display: inline-flex; align-items: center; background: var(--hot); color: #fff; font-family: var(--font); font-size: 13px; font-weight: 700; padding: 9px 20px; border-radius: var(--radius); border: none; cursor: pointer; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(241,5,96,0.35); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--hot); padding: 64px 0; text-align: center; }
.newsletter-section h2 { font-family: var(--serif); font-size: clamp(22px, 4vw, 36px); color: #fff; margin-bottom: 10px; }
.newsletter-section p { font-size: 15px; color: rgba(255,255,255,0.8); max-width: 440px; margin: 0 auto 28px; line-height: 1.6; }
.nl-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.nl-form input { flex: 1; padding: 13px 20px; border-radius: var(--radius); border: none; font-family: var(--font); font-size: 14px; outline: none; }
.nl-form button { background: var(--dark); color: #fff; border: none; border-radius: var(--radius); padding: 13px 22px; font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.nl-reassure { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 12px; }

/* ── FOOTER — variante grande (index.html) ── */
.footer { background: var(--ink); padding: 48px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-link { display: inline-block; margin-bottom: 12px; }
.footer-logo-img  { height: 36px; width: auto; display: block; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 240px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px; }

/* ── FOOTER — variante simple (autres pages) ── */
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-size: 18px; font-weight: 800; color: var(--pink); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-links a:hover { color: var(--pink); }

/* ── SOCIAL ICON ── */
.social-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(247,172,186,0.15); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--pink); cursor: pointer; transition: background 0.15s; }
.social-icon:hover { background: rgba(241,5,96,0.3); }

/* ── PLACEHOLDERS PHOTOS ── */
.img-placeholder { width: 100%; height: 100%; background: var(--blush); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.img-ph-rect {
  width: 100%; height: 100%;
  background: var(--blush);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
}
.img-ph-rect .ph-icon { font-size: 28px; }
.img-ph-rect .ph-label { font-size: 10px; font-weight: 800; color: var(--hot); text-transform: uppercase; letter-spacing: 0.5px; }
.img-ph-rect .ph-name { font-size: 11px; color: var(--gray); }

/* Classes couleur placeholder */
.ph-disco { background: linear-gradient(135deg, #f7acba, #f10560); }
.ph-resine { background: linear-gradient(135deg, #fff7d3, #f7acba); }
.ph-aqua { background: linear-gradient(135deg, #e8f4fd, #b8d9f5); }
.ph-kit1 { background: var(--cream); }
.ph-kit2 { background: var(--blush); }
.ph-kit3 { background: #fce4f3; }
.ph-kit4 { background: #e8f4fd; }
.ph-blog1 { background: var(--blush); }
.ph-blog2 { background: #fce4f3; }
.ph-blog3 { background: #e8f4fd; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--blush);
    padding: 20px 24px; gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .nl-form { flex-direction: column; }
}
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
