/* Voyage Manon & Alice — style partagé */
:root {
  --cream: #FFF8F5;
  --rose-light: #FCDDD9;
  --rose-pastel: #F4B6B0;
  --rose-deep: #E89B95;
  --coral: #FF9B85;
  --gold: #D4A574;
  --text-dark: #3D2A28;
  --text-medium: #6B5453;
  --text-light: #9C8280;
  --white: #FFFFFF;
  --card-shadow: 0 8px 30px rgba(232, 155, 149, 0.10);
  --card-shadow-hover: 0 16px 50px rgba(232, 155, 149, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 880px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, var(--cream) 0%, #FFFFFF 100%);
  color: var(--text-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 155, 149, 0.15);
  padding: 14px 20px;
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.nav a { color: var(--text-medium); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav a:hover { color: var(--rose-deep); }
.nav .home { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--text-dark); }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 600px) { .nav-links { display: none; } }

/* ============== HERO ============== */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ''; position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--rose-light); opacity: 0.5;
  z-index: -1;
}
.hero::before { top: -100px; left: -120px; }
.hero::after { bottom: -120px; right: -120px; }
.eyebrow {
  font-size: 12px; letter-spacing: 4px;
  color: var(--rose-deep); font-weight: 700;
  text-transform: uppercase; margin-bottom: 18px;
}
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1.05; color: var(--text-dark);
  margin-bottom: 16px;
}
.hero-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: 22px;
  color: var(--rose-deep); margin-bottom: 14px;
}
.hero-meta { font-size: 15px; color: var(--text-medium); }
.divider { width: 50px; height: 3px; background: var(--rose-pastel); margin: 24px auto; border-radius: 2px; }

/* ============== SECTIONS ============== */
section { padding: 50px 0; }
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 38px);
  color: var(--text-dark);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: ''; display: block;
  width: 40px; height: 3px;
  background: var(--rose-pastel);
  border-radius: 2px;
  margin-top: 10px;
}
.section-intro { color: var(--text-medium); font-size: 16px; margin-bottom: 30px; max-width: 640px; }

/* ============== TIMELINE ============== */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.timeline-item {
  background: white;
  padding: 16px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--rose-light);
}
.timeline-item .days { font-size: 11px; color: var(--coral); font-weight: 700; letter-spacing: 1px; }
.timeline-item .name { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--text-dark); margin: 4px 0 2px; }
.timeline-item .country { font-size: 11px; color: var(--text-light); }

/* ============== CARDS ============== */
.cards { display: grid; gap: 20px; margin-top: 30px; }
.cards.two { grid-template-columns: 1fr; }
.cards.three { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .cards.two { grid-template-columns: 1fr 1fr; }
  .cards.three { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(232, 155, 149, 0.10);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }

.card h2, .card h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: normal;
  color: var(--text-dark);
}
.card h2 { font-size: 26px; margin-bottom: 6px; }
.card h3 { font-size: 20px; margin-bottom: 6px; }
.card p { color: var(--text-medium); font-size: 14px; }

/* ============== STEP CARD ============== */
.step {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(232, 155, 149, 0.08);
}
.step-img {
  width: 100%; height: 240px;
  background-size: cover; background-position: center;
  background-color: var(--rose-light);
  position: relative;
}
.step-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(61, 42, 40, 0.55) 100%);
}
.step-img-text {
  position: absolute; left: 24px; bottom: 18px; right: 24px;
  color: white; z-index: 2;
}
.step-img-text .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: var(--rose-deep);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.step-img-text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: white;
  margin: 0;
  line-height: 1.1;
}
.step-img-text .duration {
  font-style: italic;
  font-size: 14px;
  opacity: 0.95;
  margin-top: 2px;
}
.step-body { padding: 22px 24px 26px; }
.step-body .lead {
  font-size: 14px; color: var(--text-medium);
  font-style: italic; margin-bottom: 14px;
}
.todo {
  list-style: none; padding: 0; margin: 0 0 14px;
}
.todo li {
  padding: 6px 0; font-size: 14px; color: var(--text-dark);
  display: flex; align-items: flex-start; gap: 10px;
}
.todo li::before {
  content: '▸'; color: var(--coral); font-weight: 700;
  flex-shrink: 0;
}
.step-meta {
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  padding-top: 12px;
  border-top: 1px solid var(--rose-light);
  font-size: 12px; color: var(--text-medium);
}
.step-meta strong { color: var(--rose-deep); font-weight: 600; }

/* ============== TABLE ============== */
.budget-table {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  width: 100%;
}
.budget-table table { width: 100%; border-collapse: collapse; }
.budget-table th, .budget-table td {
  padding: 12px 16px; text-align: left;
  font-size: 14px;
}
.budget-table thead { background: var(--rose-deep); }
.budget-table thead th { color: white; font-weight: 600; font-size: 13px; letter-spacing: 0.5px; }
.budget-table tbody tr:nth-child(even) { background: var(--rose-light); }
.budget-table tbody td { color: var(--text-dark); }
.budget-table tbody td:first-child { font-weight: 500; }
.budget-table tfoot { background: var(--rose-pastel); }
.budget-table tfoot td { color: white; font-weight: 700; font-size: 15px; }

/* ============== BIG STATS ============== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.stat {
  background: white;
  padding: 20px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--rose-light);
}
.stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--coral);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ============== PRATIQUE CARDS ============== */
.practical {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) { .practical { grid-template-columns: 1fr 1fr; } }

.practical-card {
  background: white;
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rose-light);
}
.practical-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.practical-card ul { list-style: none; }
.practical-card li {
  padding: 5px 0;
  font-size: 13px;
  color: var(--text-medium);
}
.practical-card li strong { color: var(--text-dark); display: block; margin-top: 4px; }

/* ============== CHECKLIST ============== */
.checklist {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .checklist { grid-template-columns: repeat(4, 1fr); } }

.check-block {
  background: white;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--rose-light);
}
.check-block header {
  padding: 10px 14px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
}
.check-block.deep header { background: var(--rose-deep); }
.check-block.coral header { background: var(--coral); }
.check-block.gold header { background: var(--gold); }
.check-block.pastel header { background: var(--rose-pastel); }
.check-block ul { list-style: none; padding: 14px; }
.check-block li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-dark);
  display: flex;
  gap: 10px;
}
.check-block li::before {
  content: '☐'; color: var(--rose-deep); font-weight: 700;
  flex-shrink: 0;
}

/* ============== COMPARISON ============== */
.compare {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  padding: 14px 12px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--rose-light);
}
.compare thead { background: var(--rose-deep); }
.compare thead th { color: white; font-size: 13px; letter-spacing: 0.5px; }
.compare tbody tr:hover { background: var(--cream); }
.compare td:first-child { font-weight: 600; color: var(--text-dark); }

/* ============== DESTINATION ============== */
.destination {
  margin-bottom: 50px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.destination-hero {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.destination-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61, 42, 40, 0.2) 0%, rgba(61, 42, 40, 0.65) 100%);
}
.destination-hero-text {
  position: absolute; left: 28px; bottom: 24px; right: 28px;
  color: white; z-index: 2;
}
.destination-hero-text .num {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: var(--rose-deep);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.destination-hero-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  line-height: 1;
  margin: 0;
}
.destination-hero-text .tag {
  font-style: italic;
  font-size: 16px;
  margin-top: 4px;
  opacity: 0.95;
}
.destination-body { padding: 28px; }
.dest-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .dest-grid { grid-template-columns: 2fr 1fr; } }

.itinerary { list-style: none; }
.itinerary li {
  padding: 8px 0; font-size: 14px;
  display: grid; grid-template-columns: 65px 1fr;
  gap: 14px; align-items: start;
  border-bottom: 1px solid var(--rose-light);
}
.itinerary li:last-child { border-bottom: 0; }
.itinerary .when { color: var(--coral); font-weight: 600; font-size: 12px; padding-top: 2px; }
.itinerary strong { color: var(--text-dark); display: block; margin-bottom: 2px; }
.itinerary span { color: var(--text-medium); font-size: 13px; }

.dest-side h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--text-dark);
  margin: 0 0 8px;
}
.dest-side .price {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--coral);
  line-height: 1;
}
.dest-side .price-sub { font-size: 12px; color: var(--text-light); }
.dest-side hr { border: 0; border-top: 1px solid var(--rose-light); margin: 16px 0; }

.pros-cons {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin-top: 22px;
}
@media (min-width: 700px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros, .cons {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--cream);
}
.pros h5, .cons h5 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.pros h5 { color: var(--gold); }
.cons h5 { color: var(--rose-deep); }
.pros ul, .cons ul { list-style: none; }
.pros li, .cons li {
  padding: 4px 0; font-size: 13px;
  display: flex; gap: 8px; color: var(--text-dark);
}
.pros li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.cons li::before { content: '✗'; color: var(--rose-deep); font-weight: 700; }

/* ============== QUIZ ============== */
.quiz-q {
  background: white;
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin-bottom: 14px;
  border: 1px solid var(--rose-light);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
}
.quiz-num {
  background: var(--rose-pastel);
  color: white;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
}
.quiz-q strong { display: block; color: var(--text-dark); font-size: 14px; margin-bottom: 4px; }
.quiz-q span { font-size: 13px; color: var(--text-medium); font-style: italic; }

/* ============== FOOTER ============== */
.footer {
  text-align: center;
  padding: 50px 20px 30px;
  color: var(--text-light);
  font-size: 13px;
  background: var(--cream);
  margin-top: 40px;
}
.footer .heart { color: var(--coral); }
.footer em { color: var(--rose-deep); font-style: normal; }
.footer a { color: var(--rose-deep); text-decoration: none; font-weight: 500; }

/* ============== TIP / NOTE ============== */
.tip {
  background: var(--rose-light);
  border-left: 3px solid var(--rose-deep);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-dark);
  margin: 16px 0;
}
.tip strong { color: var(--rose-deep); }

/* ============== UTIL ============== */
.spacer-sm { height: 12px; }
.spacer-md { height: 24px; }
.text-center { text-align: center; }
