/* Grand Séducteur - Programmatic SEO */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --rouge: #C8102E;
  --rouge-light: #f8e8eb;
  --or: #B8933F;
  --noir: #1a1a1a;
  --gris: #6b7280;
  --gris-light: #f4f4f4;
  --blanc: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 12px;
  --font-title: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--noir);
  background: var(--blanc);
  line-height: 1.7;
  font-size: 16px;
}

/* HEADER */
header {
  background: var(--blanc);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 44px; }
.logo-text {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--rouge);
  text-decoration: none;
  font-weight: 700;
}
nav { display: flex; gap: 28px; align-items: center; }
nav a {
  text-decoration: none;
  color: var(--noir);
  font-weight: 500;
  font-size: 14px;
  transition: color .2s;
}
nav a:hover { color: var(--rouge); }
.nav-cta {
  background: var(--rouge);
  color: white !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #a50d24 !important; }

/* HERO PROGRAMMATIQUE */
.hero-prog {
  background: linear-gradient(135deg, #fff5f6 0%, #fff 60%, #f9f4ee 100%);
  padding: 64px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-prog::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,16,46,0.06), transparent 70%);
  border-radius: 50%;
}
.breadcrumb {
  font-size: 13px;
  color: var(--gris);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--rouge); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.hero-prog h1 {
  font-family: var(--font-title);
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
  color: var(--noir);
  max-width: 760px;
  margin: 0 auto 16px;
}
.hero-prog h1 span { color: var(--rouge); }
.hero-tagline {
  font-size: 18px;
  color: var(--gris);
  max-width: 560px;
  margin: 0 auto 32px;
  font-weight: 300;
}
.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.badge {
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--noir);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.badge-icon { font-size: 15px; }

/* CTA PRINCIPAL */
.cta-block {
  background: var(--rouge);
  border-radius: 16px;
  padding: 32px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 32px rgba(200,16,46,0.25);
}
.cta-block h3 {
  font-family: var(--font-title);
  color: white;
  font-size: 22px;
  margin-bottom: 8px;
}
.cta-block p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 20px;
}
.btn-cta {
  display: inline-block;
  background: white;
  color: var(--rouge);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 10px; }

/* CONTENU PRINCIPAL */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 56px 0;
}
@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; }
  nav { display: none; }
}

/* ARTICLE CONTENT */
.article-body h2 {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--noir);
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rouge-light);
}
.article-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--noir);
}
.article-body p {
  margin-bottom: 16px;
  color: #374151;
  font-size: 15.5px;
}
.article-body ul {
  margin: 12px 0 20px 20px;
}
.article-body ul li {
  margin-bottom: 8px;
  color: #374151;
  font-size: 15.5px;
}

/* STATS BOX */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.stat-card {
  background: var(--gris-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-title);
  font-size: 30px;
  color: var(--rouge);
  font-weight: 700;
  display: block;
}
.stat-label {
  font-size: 12px;
  color: var(--gris);
  margin-top: 4px;
}

/* COMPARATIF SITES */
.sites-list { margin: 24px 0; }
.site-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--noir);
  transition: box-shadow .2s, transform .2s;
  background: white;
}
.site-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.site-rank {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--or);
  font-weight: 700;
  min-width: 32px;
}
.site-info { flex: 1; }
.site-name { font-weight: 600; font-size: 16px; }
.site-desc { font-size: 13px; color: var(--gris); margin-top: 3px; }
.site-rating { display: flex; gap: 2px; font-size: 13px; }
.stars { color: #f59e0b; }
.site-btn {
  background: var(--rouge);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s;
}
.site-card:hover .site-btn { background: #a50d24; }

/* FAQ */
.faq-section { margin: 36px 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  transition: background .2s;
}
.faq-question:hover { background: var(--gris-light); }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: 14.5px;
  color: #4b5563;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}
.faq-icon { font-size: 18px; transition: transform .3s; color: var(--rouge); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* VILLES PROCHES */
.villes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.ville-link {
  display: block;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  color: var(--noir);
  font-weight: 500;
  transition: all .2s;
  text-align: center;
}
.ville-link:hover {
  border-color: var(--rouge);
  color: var(--rouge);
  background: var(--rouge-light);
}

/* SIDEBAR */
.sidebar { }
.sidebar-card {
  background: var(--gris-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: var(--font-title);
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--noir);
}
.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 8px; }
.sidebar-links a {
  text-decoration: none;
  color: var(--rouge);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-links a::before { content: '→'; }

.sidebar-cta {
  background: linear-gradient(135deg, var(--rouge), #8b0d1f);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 24px;
}
.sidebar-cta h4 {
  font-family: var(--font-title);
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 13px; margin-bottom: 18px; }
.sidebar-cta .btn-cta { background: white; color: var(--rouge); }

/* FOOTER */
footer {
  background: var(--noir);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 28px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .logo-text { color: white; font-size: 20px; }
.footer-brand p { font-size: 13px; margin-top: 10px; line-height: 1.6; }
footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 14px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
footer ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
}
