/* ======================================================
   CÉLIBATAIRES CHRÉTIENS — HERO & NAVIGATION STYLES
   Split hero: Slate left / Photo mosaic right
   ====================================================== */

/* ==============================
   HIDE PLATFORM DUPLICATE LOGOS
   ============================== */

body > img.logo,
body > a > img.logo,
.header-container > img.logo {
  display: none !important;
}

/* ==============================
   TOP NAV (inside hero)
   ============================== */

.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  min-height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--color-gold);
}

/* ==============================
   DESKTOP STICKY HEADER
   ============================== */

.sticky-header-desktop {
  position: fixed;
  top: -90px;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(44, 58, 74, 0.12);
  z-index: 1000;
  transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid var(--color-border-light);
}

.sticky-header-desktop.visible {
  top: 0;
}

.sticky-header-desktop .sticky-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-navy);
  text-decoration: none;
}

.sticky-header-desktop .sticky-logo span {
  color: var(--color-gold);
}

.sticky-header-desktop .btn-signup-sticky {
  background: var(--color-gold);
  color: var(--color-white);
  padding: 10px 28px;
  border-radius: 4px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.sticky-header-desktop .btn-signup-sticky:hover {
  background: var(--color-gold-light);
}

/* ==============================
   MOBILE STICKY BOTTOM BAR
   ============================== */

.sticky-bottom-mobile {
  position: fixed;
  bottom: -90px;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -2px 20px rgba(44, 58, 74, 0.12);
  z-index: 1000;
  transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 68px;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-top: 1px solid var(--color-border-light);
}

.sticky-bottom-mobile.visible {
  bottom: 0;
}

.sticky-bottom-mobile .sticky-logo-mobile {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  color: var(--color-navy);
  font-weight: 400;
}

.sticky-bottom-mobile .sticky-logo-mobile span {
  color: var(--color-gold);
}

.sticky-bottom-mobile .btn-signup-sticky-mobile {
  background: var(--color-gold);
  color: var(--color-white);
  padding: 10px 22px;
  border-radius: 4px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

/* ==============================
   HERO — SPLIT LAYOUT
   ============================== */

.hero-fullscreen {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--color-navy);
  overflow: hidden;
  flex-shrink: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* LEFT COLUMN */
.hero-left {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 56px 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 14px;
}

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

.hero-verse {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

/* RIGHT COLUMN — mosaic */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--color-navy) 0%, transparent 30%),
    linear-gradient(to top, var(--color-navy) 0%, transparent 20%);
  z-index: 2;
  pointer-events: none;
}

.hero-mosaic {
  display: none;
}

/* When hero has a real background image */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

/* Terracotta cross ornament */
.hero-cross-ornament {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  z-index: 3;
  opacity: 0.08;
  pointer-events: none;
}

/* Desktop login link */
.hero-login-link {
  position: absolute;
  top: 24px;
  right: 48px;
  z-index: 20;
  white-space: nowrap;
  min-width: 90px;
  text-align: center;
}

/* Connexion button style — white on dark hero */
.btn-outline-white,
a.btn-outline-white {
  color: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  padding: 9px 22px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none !important;
  white-space: nowrap;
  display: inline-block;
  transition: all 0.2s ease;
}
a.btn-outline-white:hover,
.btn-outline-white:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,0.7);
}

/* Mobile: logo shown, brand text hidden */
.hero-logo-mobile {
  display: none;
  max-width: 220px;
  height: auto;
  margin: 0 auto 32px;
}

/* Mobile: login becomes full-width button */
.mobile-login-btn {
  display: none;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--color-white);
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  margin-top: 14px;
  transition: background 0.2s;
}
.mobile-login-btn:hover {
  background: rgba(255,255,255,0.08);
}

/* ==============================
   GEO PAGE: BREADCRUMB
   ============================== */

.breadcrumb-bar {
  background: var(--color-navy-dark);
  padding: 12px 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.breadcrumb-bar a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-bar a:hover {
  color: var(--color-gold);
}

.breadcrumb-sep {
  opacity: 0.3;
}

/* ==============================
   GEO PAGE: HERO VARIANT
   (same split, but shorter + stats card)
   ============================== */

.hero-geo {
  min-height: 72vh;
}

.hero-geo .hero-left {
  padding: 80px 56px 64px;
}

.hero-geo .hero-title {
  font-size: clamp(30px, 3.5vw, 44px);
}

/* Stats card — right side of geo hero left column */
.hero-stats-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--overlay-gold-20);
  border-radius: 8px;
  padding: 28px 24px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
}

.stats-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.stats-card-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: var(--color-gold);
  font-weight: 400;
}

.stats-card-label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ==============================
   GEO PAGE: LOCAL INTRO SECTION
   ============================== */

.section-local-intro {
  background: var(--color-cream);
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.local-intro-body {
  font-size: 16px;
  color: var(--color-text-mid);
  line-height: 1.8;
}

.local-intro-body p + p {
  margin-top: 14px;
}

.local-intro-image {
  background: #D8CFC0;
  border-radius: 8px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 13px;
  overflow: hidden;
  position: relative;
}

.local-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==============================
   VERSE FEATURE SECTION
   ============================== */

.section-verse-feature {
  background: var(--color-navy);
  padding: 72px 60px;
  text-align: center;
}

.verse-ornament {
  font-size: 18px;
  color: var(--color-gold);
  opacity: 0.4;
  letter-spacing: 10px;
  margin-bottom: 22px;
}

.verse-feature-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: var(--color-white);
  max-width: 620px;
  margin: 0 auto 14px;
  line-height: 1.6;
}

.verse-feature-ref {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* ── VERSE CAROUSEL ── */
.vc-track {
  position: relative;
  min-height: 130px;
  max-width: 680px;
  margin: 0 auto 28px;
}
.vc-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  text-align: center;
}
.vc-slide.vc-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.vc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.vc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}
.vc-dot.vc-dot-active {
  width: 22px;
  border-radius: 3px;
  background: var(--color-gold);
}

/* ==============================
   RESPONSIVE HERO
   ============================== */

@media (max-width: 900px) {
  .hero-fullscreen {
    grid-template-columns: 1fr !important;
    overflow: hidden;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    position: relative;
    padding: 90px 24px 64px !important;
    text-align: center;
    align-items: center;
    z-index: 2;
  }

  .hero-fullscreen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/index/hero-couple.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0.55;
    z-index: 0;
  }

  /* Stronger gradient overlay for text readability on mobile */
  .hero-fullscreen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(30, 42, 56, 0.45) 0%,
      rgba(30, 42, 56, 0.65) 60%,
      rgba(30, 42, 56, 0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .nav-logo {
    display: none !important;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-eyebrow {
    display: none;
  }

  .hero-verse {
    display: none;
  }

  .sticky-header-desktop {
    display: none;
  }

  .sticky-bottom-mobile {
    display: flex;
  }

  /* Hide Connexion link in nav on mobile */
  .hero-login-link {
    display: none !important;
    visibility: hidden !important;
  }

  .mobile-login-btn {
    display: block;
  }

  .hero-logo-mobile {
    display: block;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.12;
    margin-top: 2rem;
  }

  /* Nav layout: hamburger left | logo center | spacer right */
  .site-nav {
    display: grid !important;
    grid-template-columns: 44px 1fr 44px !important;
    align-items: center !important;
    padding: 16px 16px !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 20 !important;
  }

  .nav-hamburger {
    display: flex !important;
    grid-column: 1 !important;
    justify-self: flex-start !important;
  }

  .nav-logo {
    grid-column: 2 !important;
    text-align: center !important;
    font-size: 14px !important;
    justify-self: center !important;
  }

  /* Invisible spacer to balance the grid */
  .site-nav::after {
    content: '' !important;
    display: block !important;
    grid-column: 3 !important;
    width: 44px !important;
  }

  .breadcrumb-bar {
    display: none !important;
    padding: 10px 20px;
  }

  .section-local-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px;
  }

  .section-verse-feature {
    padding: 56px 20px;
  }
}

@media (max-width: 480px) {
  .hero-left {
    padding: 90px 16px 60px;
  }

  .hero-logo-mobile {
    max-width: 180px;
  }

  .sticky-bottom-mobile .sticky-logo-mobile {
    font-size: 12px;
  }

  .sticky-bottom-mobile .btn-signup-sticky-mobile {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* ==============================
   MOBILE TEXT LOGO FALLBACK
   ============================== */
.hero-logo-mobile.hero-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 20px;
  background: none !important;
}
.hero-logo-mobile.hero-logo-text span {
  color: var(--color-gold);
}

/* ==============================
   MOBILE DROPDOWN POSITION
   ============================== */
/* ── BTN PRIMARY SHIMMER ── */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(212,115,90,0.32);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.22),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,115,90,0.42);
}
.btn-primary:hover::before {
  left: 160%;
}

.nav-mobile-dropdown {
  position: absolute !important;
  top: 64px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 19 !important;
}

/*8514.1.399.152.88445ab*/