/* =====================================================
   PARIS BACHATERO — style.css
   Palette : navy #1a1a2e | or #c9a84c | rouge #c0392b
   ===================================================== */

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

:root {
  --dark:       #1a1a2e;
  --primary:    #c0392b;
  --gold:       #c9a84c;
  --gold-light: #e8b94f;
  --text:       #333333;
  --text-light: #666666;
  --bg:         #ffffff;
  --bg-alt:     #f9f6f0;
  --border:     #e8e0d0;
  --radius:     8px;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--dark);
  line-height: 1.25;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: .08em; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--gold); }

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }

/* ---------- URGENCE STRIP ---------- */
.urgence-strip {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
}
.urgence-strip a { color: var(--gold-light); font-weight: 700; }
.urgence-strip a:hover { color: #fff; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo-img img { height: 52px; width: auto; }
.logo-img-footer img { height: 40px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-menu a {
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: background .18s, color .18s;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: var(--bg-alt);
  color: var(--primary);
  text-decoration: none;
}
.nav-menu a.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 40px;
  font-weight: 700;
}
.nav-menu a.nav-cta:hover { background: #a93226; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ---------- HERO (homepage) ---------- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.hero-v2 { min-height: 85vh; }
.hero-content { max-width: 700px; margin: 0 auto; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero .subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- HERO SM (inner pages) ---------- */
.hero-sm {
  padding: 60px 20px 50px;
  text-align: center;
  color: #fff;
}
.hero-sm h1 { color: #fff; margin: 16px 0 10px; }
.hero-sm p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.breadcrumbs a { color: rgba(255,255,255,0.75); }
.breadcrumbs span { margin: 0 6px; }

/* ---------- PALMARES BADGES ---------- */
.palmares-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.palmares-badge {
  background: rgba(201,168,76,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ---------- SOCIAL PROOF BAR ---------- */
.social-proof-bar {
  background: var(--dark);
  padding: 14px 20px;
  overflow: hidden;
}
.social-proof-inner {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
}
.sp-item { color: rgba(255,255,255,0.75); font-size: 0.82rem; white-space: nowrap; }
.sp-stars { color: var(--gold-light); }

/* ---------- SECTIONS ---------- */
.section        { padding: 72px 0; }
.section-alt    { background: var(--bg-alt); }
.section-dark   { background: var(--dark); }
.section-dark h2, .section-dark p { color: rgba(255,255,255,0.9); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-header p { color: var(--text-light); margin-top: 10px; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto 0;
  border-radius: 2px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.eyebrow-red {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

/* ---------- TWO-COL ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col-img {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
}
.two-col-text h2 { margin-bottom: 18px; }

/* ---------- CARDS GRID ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.card-icon { font-size: 2rem; margin-bottom: 14px; }

/* ---------- FEATURES GRID ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
}
.feature { text-align: center; }
.feature-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.feature h3 { margin-bottom: 8px; }

/* ---------- PALMARES GRID ---------- */
.palmares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}
.palmares-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.palmares-item:last-child { border-right: none; }
.palmares-trophy { font-size: 2rem; margin-bottom: 12px; }
.palmares-titre { font-size: 1.05rem; font-weight: 700; color: var(--gold-light); margin-bottom: 8px; }
.palmares-desc  { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.section-alt .testimonial { background: #fff; }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial p { font-size: 0.93rem; color: var(--text); font-style: italic; }
.testimonial-author {
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ---------- TARIFS ---------- */
.tarifs-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.tarif-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.tarif-card:hover { transform: translateY(-3px); }
.t-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 10px; }
.t-prix  { font-family: Georgia, serif; font-size: 2rem; font-weight: 700; color: var(--dark); }
.t-prix small { font-size: 1rem; color: var(--text-light); }
.t-detail { font-size: 0.82rem; color: var(--text-light); margin-top: 8px; line-height: 1.4; }

/* ---------- PRICING CARD (mariage) ---------- */
.pricing-grid { max-width: 450px; }
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured { border-color: var(--gold); }
.pricing-card h3 { margin-bottom: 18px; }
.pricing-card .price { font-family: Georgia, serif; font-size: 2.4rem; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.pricing-card .price span { font-size: 1rem; color: var(--text-light); }
.pricing-card ul { list-style: none; margin-bottom: 28px; text-align: left; }
.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  padding-left: 20px;
  position: relative;
}
.pricing-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 48px 20px 0;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform .25s;
}
.faq-item.active .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 0 20px; color: var(--text-light); font-size: 0.93rem; line-height: 1.7; }

/* ---------- HIGHLIGHT BOX ---------- */
.highlight-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
}

/* ---------- CONTACT GRID ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h3 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.93rem; color: var(--text); }

/* ---------- CONTACT FORM ---------- */
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  margin-top: 18px;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.contact-form textarea { min-height: 130px; resize: vertical; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary  { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #a93226; color: #fff; }

.btn-gold     { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); color: var(--dark); }

.btn-white    { background: #fff; color: var(--dark); }
.btn-white:hover { background: #f0ebe0; color: var(--dark); }

.btn-outline  { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1a3e 100%);
  padding: 72px 20px;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.75); margin-bottom: 28px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 64px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.65; margin-top: 14px; max-width: 280px; }
.footer-brand .logo-img img { filter: brightness(0) invert(1); }

.footer-links h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color .18s;
}
.footer-links a:hover { color: var(--gold-light); text-decoration: none; }

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.footer-social a {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background .18s;
}
.footer-social a:hover { background: rgba(255,255,255,0.2); color: #fff; text-decoration: none; }

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ---------- WHATSAPP BUTTON ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 76px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 200;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 26px; height: 26px; }

/* ---------- STICKY CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  z-index: 150;
  text-decoration: none;
  display: block;
}
.sticky-cta span { text-decoration: underline; }
.sticky-cta:hover { background: #a93226; color: #fff; text-decoration: none; }

/* ---------- LOGO TEXTE ---------- */
.logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.logo-text span {
  color: var(--gold);
  font-style: italic;
}
.logo-text:hover { text-decoration: none; color: var(--dark); }

.logo-text-footer {
  font-size: 1.2rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}
.logo-text-footer:hover { color: #fff; }
.logo-text-footer span { color: var(--gold-light); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .two-col      { grid-template-columns: 1fr; gap: 32px; }
  .two-col-img  { min-height: 260px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .palmares-grid { grid-template-columns: 1fr 1fr; }
  .palmares-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 4px;
    border-bottom: 2px solid var(--border);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 14px; border-radius: var(--radius); }

  .hero         { min-height: 75vh; padding: 60px 16px; }
  .section      { padding: 48px 0; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .tarifs-grid-v2 { grid-template-columns: 1fr 1fr; }
  .cards-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .palmares-grid { grid-template-columns: 1fr; }
  .features     { grid-template-columns: 1fr; }

  .social-proof-inner { gap: 12px; }
  .sp-item { font-size: 0.78rem; }

  .btn { padding: 12px 20px; font-size: 0.88rem; }
}

@media (max-width: 400px) {
  .tarifs-grid-v2 { grid-template-columns: 1fr; }
}
