/* =====================================================================
   RK TANZANIE VOYAGE — CSS PAGE DÉTAIL SAFARI : VASTES PLAINES 11 JOURS (safari-vastes-plaines.php)
   Contient UNIQUEMENT les styles spécifiques à cette page.
   Le chrome partagé (topbar, navbar, sidebar, footer, floating, reveal,
   keyframes, :root, modal) vit dans css/common.css.
   Ce fichier sert de TEMPLATE pour les pages safari-* « complètes »
   (jour par jour : vastes-plaines, grande-migration, kenya-tanzanie, etc.).
   ===================================================================== */

/* HERO */
.hero {
  background: var(--green-dark);
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1535941339077-2dd1c7963098?w=1920&q=80")
    center/cover;
  opacity: 0.28;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  max-width: 900px;
  animation: fadeInUp 0.9s ease both;
}

.hero-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9fc9af;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.hero-back:hover {
  color: var(--gold);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff12;
  border: 1px solid #ffffff25;
  color: var(--gold);
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
  animation: float 3.5s ease-in-out infinite;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #ffffff12;
  border: 1px solid #ffffff18;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: #cce0cc;
}

/* BREADCRUMB */
.breadcrumb {
  background: var(--off-white);
  padding: 12px 40px;
  border-bottom: 1px solid #e8ede8;
}

.breadcrumb-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--green-mid);
  text-decoration: none;
}

/* PRICE BAR (sticky) */
.price-bar {
  background: #fff;
  border-bottom: 2px solid #e8ede8;
  padding: 14px 40px;
  position: sticky;
  top: 70px;
  z-index: 90;
}

.price-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.price-bar-title {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color: var(--text-dark);
}

.btn-reserve-main {
  background: var(--green-mid);
  color: #fff;
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-reserve-main:hover {
  background: var(--green-dark);
}

.btn-wa-main {
  background: #25d366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 22px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
}

/* MAIN LAYOUT */
.main-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* SEASON BANNER */
.season-banner {
  background: linear-gradient(135deg, #1a3a2a, #2d5a3d);
  border-radius: 16px;
  padding: 22px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 5px solid var(--gold);
}

.season-icon {
  font-size: 36px;
  flex-shrink: 0;
  animation: float 3.5s ease-in-out infinite;
}

.season-text h4 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 4px;
}

.season-text p {
  color: #9fc9af;
  font-size: 13px;
  line-height: 1.6;
}

/* SECTION LABELS */
.section-tag {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--green-mid);
  font-size: 13px;
  margin-bottom: 6px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.section-title em {
  color: var(--green-mid);
  font-style: italic;
}

/* OVERVIEW */
.overview-box {
  background: var(--off-white);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 32px;
  border: 1px solid #e8ede8;
}

.overview-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.overview-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ov-step {
  background: var(--green-dark);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 12px;
}

/* DAY CARDS */
.day-card {
  border: 1px solid #e8ede8;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.day-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 4px 18px rgba(45, 90, 61, 0.1);
}

.day-header {
  background: var(--green-dark);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.day-num {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 15px;
  flex-shrink: 0;
}

.day-title-text {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
}

.day-title-sub {
  color: #9fc9af;
  font-size: 11.5px;
  margin-top: 2px;
}

.day-body {
  padding: 18px 20px;
  background: #fff;
}

.day-body p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.8;
}

.day-body p + p {
  margin-top: 10px;
}

.day-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  border: 1px solid #e0ebe0;
  color: var(--green-mid);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  margin: 8px 4px 4px 0;
}

.day-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
}

/* NB BOX */
.nb-box {
  background: #fff8e8;
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 24px;
}

.nb-box p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* SIDEBAR */
.sidebar-sticky {
  position: sticky;
  top: 145px;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e8ede8;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
}

.price-card-header {
  background: var(--green-dark);
  padding: 20px;
  text-align: center;
}

.price-card-title {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.price-card-sub {
  color: #9fc9af;
  font-size: 11.5px;
}

.price-card-body {
  padding: 20px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.price-box {
  background: var(--off-white);
  border-radius: 10px;
  padding: 13px 10px;
  text-align: center;
  border: 1.5px solid #e0ebe0;
  transition: all 0.25s;
}

.price-box:hover {
  border-color: var(--green-mid);
  background: #f0f8f0;
}

.price-box-group {
  font-size: 10px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 4px;
}

.price-box-num {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-mid);
}

.price-box-unit {
  font-size: 9.5px;
  color: var(--gray);
}

.btn-reserve-card {
  display: block;
  width: 100%;
  background: var(--green-mid);
  color: #fff;
  padding: 12px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  margin-bottom: 10px;
}

.btn-reserve-card:hover {
  background: var(--green-dark);
}

.btn-wa-card {
  display: block;
  width: 100%;
  background: #25d366;
  color: #fff;
  padding: 12px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

/* INCLUS CARD */
.inclus-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e8ede8;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.inclus-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.inclus-title.yes {
  color: var(--green-mid);
}

.inclus-title.no {
  color: #aa4444;
}

.inclus-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-mid);
  margin-bottom: 8px;
  line-height: 1.5;
}

/* CONDITIONS CARD */
.conditions-card {
  background: var(--off-white);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #e8ede8;
}

.conditions-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.condition-item {
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 7px;
  line-height: 1.6;
  padding-left: 12px;
  border-left: 2px solid var(--green-mid);
}

/* LODGES CARD */
.lodges-card {
  background: var(--green-dark);
  border-radius: 14px;
  padding: 18px 20px;
  color: #cce0cc;
  margin-bottom: 20px;
}

.lodges-card h4 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.lodge-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* CTA BANNER */
.cta-banner {
  background: var(--green-mid);
  padding: 26px 40px;
}

.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-icon {
  font-size: 30px;
  margin-right: 14px;
  animation: float 3.5s ease-in-out infinite;
}

.cta-text h3 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 19px;
}

.cta-text p {
  color: #9fc9af;
  font-size: 13px;
  margin-top: 3px;
}

.btn-cta {
  background: var(--gold);
  color: var(--green-dark);
  padding: 11px 26px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* RESPONSIVE — page-specific (le chrome responsive est dans common.css) */
@media (max-width: 900px) {
  .hero-content {
    padding: 55px 20px 40px;
  }

  .breadcrumb,
  .price-bar {
    padding: 10px 20px;
  }

  .main-layout {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 28px;
  }

  .sidebar-sticky {
    position: static;
  }

  .price-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .season-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .day-img {
    height: 180px;
  }
}

/* =====================================================================
   AJOUTS SPÉCIFIQUES — VASTES PLAINES
   ===================================================================== */

/* PRICE BAR — amount / note / btns en classes */
.price-bar-amount {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--green-mid);
  font-weight: 700;
}

.price-bar-note {
  font-size: 11px;
  color: var(--gray);
}

.price-bar-btns {
  display: flex;
  gap: 8px;
}

/* DEPART INFO CARD (remplace lodges-card sur cette page) */
.depart-card {
  background: var(--green-dark);
  border-radius: 14px;
  padding: 18px 20px;
  color: #cce0cc;
}

.depart-card h4 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.depart-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 7px;
}
