/* ═══════════════════════════════
   GLIDE GUIDE — style.css
   ═══════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --navy:       #1a1a2e;
  --navy2:      #16213e;
  --gold:       #f0c040;
  --gold-light: #fff8e1;
  --grey:       #f5f5f0;
  --white:      #ffffff;
  --text:       #2c2c2c;
  --muted:      #777777;
  --border:     #e0e0d8;
  --green:      #2e7d32;
  --red:        #c62828;
  --radius:     16px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --nav-h:      68px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
textarea, input, button, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ─── TYPOGRAPHIE ─── */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
em { font-style: normal; color: var(--gold); }
p { margin-bottom: 0; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 900;
  color: var(--white); letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem !important;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(240,192,64,0.4);
}
.nav-burger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 6px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  border-radius: 2px; transition: all 0.3s;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  padding: 56px 5% 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px; text-align: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 900;
  color: var(--white);
}
.footer-logo span { color: var(--gold); }
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  justify-content: center; margin-top: 8px;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem; margin-top: 8px;
}

/* ─── BOUTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: 50px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(240,192,64,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,192,64,0.45);
}
.btn-ghost {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem; font-weight: 500;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy); color: var(--navy);
  font-weight: 700; font-size: 0.95rem;
  padding: 12px 28px; border-radius: 50px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ─── SECTIONS ─── */
section { padding-top: var(--nav-h); }
.section { padding: 88px 5%; }
.section-alt { background: var(--grey); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner--narrow { max-width: 740px; margin: 0 auto; }
.section-head { margin-bottom: 52px; }
.section-label {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 10px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); max-width: 520px; }
.section-cta { text-align: center; margin-top: 48px; }
.empty-state {
  text-align: center; padding: 64px 20px;
  color: var(--muted); font-size: 1rem;
}

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--navy);
  padding: calc(var(--nav-h) + 64px) 5% 72px;
}
.page-header-inner {
  max-width: 1100px; margin: 0 auto;
}
.page-header .section-label { margin-bottom: 12px; }
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.6); max-width: 520px; font-size: 1rem; }

/* ─── CTA BANNER ─── */
.section-cta-banner {
  background: var(--gold);
  padding: 80px 5%; text-align: center;
}
.section-cta-banner h2 {
  color: var(--navy); margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}
.section-cta-banner p {
  color: rgba(26,26,46,0.65);
  margin-bottom: 32px; font-size: 1rem;
}

/* ═══════════════════════════════
   PARTIE 2 — PAGES & COMPOSANTS
   ═══════════════════════════════ */

/* ─── HERO (index) ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 64px) 5% 80px;
  overflow: hidden;
  background: var(--navy); /* fallback si pas d'image */
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1; /* ← était 0.3 */
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.55) 40%, rgba(26,26,46,0.3));
  /* ← overlay réduit pour laisser voir l'image */
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 640px;
}
.hero-tag {
  display: inline-block;
  background: rgba(240,192,64,0.12);
  border: 1px solid rgba(240,192,64,0.3);
  color: var(--gold);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 24px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ─── VOYAGE CARDS (grid) ─── */
.voyages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.voyage-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.voyage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.voyage-card-img {
  height: 220px;
  background: var(--grey) center/cover no-repeat;
}
.voyage-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.voyage-card-date { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.voyage-card-body h3 { font-size: 1.1rem; color: var(--navy); }
.voyage-card-body p { font-size: 0.88rem; color: var(--muted); flex: 1; }
.voyage-card-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.voyage-card-meta span { font-size: 0.82rem; color: var(--muted); }

/* ─── VOYAGE ROWS (list) ─── */
.voyages-list { display: flex; flex-direction: column; gap: 0; }
.voyage-row {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 360px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.voyage-row:hover { background: var(--grey); }
.voyage-row--reverse { direction: rtl; }
.voyage-row--reverse > * { direction: ltr; }
.voyage-row-img { position: relative; overflow: hidden; }
.voyage-row-bg {
  position: absolute; inset: 0;
  background: var(--grey) center/cover no-repeat;
  transition: transform 0.4s;
}
.voyage-row:hover .voyage-row-bg { transform: scale(1.03); }
.voyage-row-bg--empty { background: var(--grey); }
.voyage-row-body {
  padding: 48px 52px;
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.voyage-row-body h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--navy); }
.voyage-row-body p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.voyage-row-link {
  font-size: 0.9rem; font-weight: 700; color: var(--navy);
  margin-top: 8px; transition: letter-spacing 0.2s;
}
.voyage-row:hover .voyage-row-link { letter-spacing: 0.5px; }

/* ─── VOYAGE DETAIL ─── */
.voyage-cover {
  height: 100vh; min-height: 500px;
  position: relative;
  background: var(--navy) center/cover no-repeat;
  display: flex; align-items: flex-end;
  padding: 0 5% 64px;
}
.voyage-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.voyage-cover-content { position: relative; z-index: 1; color: var(--white); }
.voyage-cover-content h1 { color: var(--white); margin: 8px 0 16px; }
.voyage-cover-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.voyage-back {
  position: absolute; top: calc(var(--nav-h) + 24px); left: 5%;
  z-index: 2; color: rgba(255,255,255,0.8); font-size: 0.88rem;
  transition: color 0.2s;
}
.voyage-back:hover { color: var(--white); }
.voyage-chapeau { font-size: 1.15rem; color: var(--text); line-height: 1.75; font-weight: 500; }
.voyage-section-title {
  font-family: var(--font-head);
  font-size: 1.8rem; color: var(--navy);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.etape { margin-bottom: 48px; }
.etape-header { margin-bottom: 16px; }
.etape-num {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 6px;
}
.etape-header h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 4px; }
.etape-lieu { font-size: 0.85rem; color: var(--muted); }
.etape-texte { font-size: 0.97rem; color: var(--text); line-height: 1.75; }
.etape-separator {
  border: none; border-top: 1px solid var(--border);
  margin: 40px 0;
}
.etape-photos { display: grid; gap: 12px; margin: 24px 0; }
.etape-photos--single { grid-template-columns: 1fr; }
.etape-photos--double { grid-template-columns: 1fr 1fr; }
.etape-photos--triple { grid-template-columns: 1fr 1fr 1fr; }
.etape-photo img {
  width: 100%; height: 280px;
  object-fit: cover; border-radius: var(--radius-sm);
}
.etape-photo figcaption {
  font-size: 0.78rem; color: var(--muted);
  text-align: center; margin-top: 6px;
}
.etape-infos {
  background: var(--grey); border-radius: var(--radius-sm);
  padding: 16px 20px; margin-top: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.etape-info-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; }
.etape-info-icon { flex-shrink: 0; }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.galerie-item img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--radius-sm);
}
.galerie-item figcaption { font-size: 0.78rem; color: var(--muted); margin-top: 6px; }

/* ─── STEPS ─── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--navy); color: var(--gold);
  font-weight: 900; font-size: 1.1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

/* ─── OFFRES ─── */
.offres-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.offre-card {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.offre-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offre-card--featured {
  border-color: var(--navy); background: var(--navy);
  transform: scale(1.03);
}
.offre-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.offre-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 10px; }
.offre-card--featured .offre-tag { color: var(--gold); }
.featured-badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 800;
  padding: 2px 8px; border-radius: 8px; margin-left: 6px;
}
.offre-price {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 900; color: var(--navy);
  line-height: 1; margin-bottom: 4px;
}
.offre-card--featured .offre-price { color: var(--gold); }
.offre-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.offre-card--featured .offre-title { color: var(--white); }
.offre-features { margin-bottom: 28px; }
.offre-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.offre-card--featured .offre-features li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}
.offre-features li:last-child { border-bottom: none; }
.check { color: var(--gold); font-weight: 900; flex-shrink: 0; }
.btn-offre {
  display: block; text-align: center;
  font-weight: 700; font-size: 0.95rem;
  padding: 13px; border-radius: 50px;
  border: 2px solid var(--navy); color: var(--navy);
  transition: all 0.2s;
}
.btn-offre:hover { background: var(--navy); color: var(--white); }
.offre-card--featured .btn-offre {
  background: var(--gold); border-color: var(--gold); color: var(--navy);
}
.offre-card--featured .btn-offre:hover { background: #e0b030; }
.offre-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 10px; }
.offre-card--featured .offre-note { color: rgba(255,255,255,0.35); }
.offres-note-globale { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 24px; }
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.faq-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── ABOUT ─── */
.about-chapeau {
  font-family: var(--font-head);
  font-size: 1.5rem; line-height: 1.5;
  color: var(--navy); margin-bottom: 32px;
}
.about-body p { font-size: 0.97rem; color: var(--text); line-height: 1.75; margin-bottom: 16px; }
.about-trips { display: flex; flex-direction: column; gap: 32px; }
.about-trip {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.about-trip-flag { font-size: 2.4rem; flex-shrink: 0; }
.about-trip-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.about-trip-body p { font-size: 0.9rem; color: var(--muted); margin: 10px 0; line-height: 1.65; }
.about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.about-val {
  background: var(--grey); border-radius: var(--radius-sm);
  padding: 20px; display: flex; flex-direction: column; gap: 6px;
}
.about-val-icon { font-size: 1.4rem; }
.about-val strong { font-size: 0.95rem; color: var(--navy); }
.about-val span { font-size: 0.84rem; color: var(--muted); line-height: 1.5; }

/* ─── BRIEF FORM ─── */
.progress-bar {
  height: 4px; background: var(--border);
  border-radius: 4px; margin-bottom: 40px; overflow: hidden;
}
.progress-fill { height: 100%; background: var(--gold); width: 0; transition: width 0.4s; }
.bloc {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  margin-bottom: 24px;
}
.bloc--cta { background: var(--grey); }
.bloc-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.bloc-number {
  width: 36px; height: 36px; background: var(--navy);
  color: var(--gold); font-weight: 900; font-size: 1rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bloc-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.bloc-subtitle { font-size: 0.78rem; color: var(--muted); margin-left: auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field:last-child { margin-bottom: 0; }
.field label {
  display: block; font-size: 0.88rem;
  font-weight: 600; color: var(--navy);
  margin-bottom: 8px;
}
.hint { font-size: 0.78rem; font-weight: 400; color: var(--muted); margin-left: 6px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="password"],
.field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.92rem; color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,26,46,0.08);
}
.radio-group, .checkbox-group {
  display: flex; flex-direction: column; gap: 8px;
}
.radio-group label, .checkbox-group label {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 400; color: var(--text);
  cursor: pointer; padding: 8px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
}
.radio-group label:hover, .checkbox-group label:hover {
  border-color: var(--navy); background: var(--grey);
}
.radio-group input, .checkbox-group input { flex-shrink: 0; accent-color: var(--navy); }
.notice {
  background: var(--gold-light); border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 0.85rem; color: var(--text); margin-top: 12px;
}
.cgv-box {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem; color: var(--text); line-height: 1.6;
}
.cgv-box input { flex-shrink: 0; accent-color: var(--navy); margin-top: 3px; }
.submit-section { text-align: center; margin-top: 24px; }
.submit-section p { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
#submitBtn {
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 1.05rem;
  padding: 16px 40px; border-radius: 50px; border: none;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(26,26,46,0.2);
}
#submitBtn:hover:not(:disabled) {
  background: #2d2d4e;
  box-shadow: 0 8px 28px rgba(26,26,46,0.3);
  transform: translateY(-2px);
}
#submitBtn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ─── ADMIN ─── */
.admin-body { background: #f0f0ec; min-height: 100vh; }
.admin-login {
  min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  padding: 24px;
}
.admin-login-box {
  background: var(--white); border-radius: var(--radius);
  padding: 48px 40px; width: 100%; max-width: 400px;
  box-shadow: var(--shadow-lg);
}
.admin-login-logo {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 900; color: var(--navy);
  text-align: center; margin-bottom: 6px;
}
.admin-login-logo span { color: var(--gold); }
.admin-login-sub { text-align: center; color: var(--muted); font-size: 0.88rem; margin-bottom: 32px; }
.admin-error {
  background: #ffebee; border-left: 3px solid var(--red);
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 0.88rem; color: var(--red); margin-bottom: 20px;
}
.admin-nav {
  background: var(--navy); height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; position: sticky; top: 0; z-index: 100;
}
.admin-nav-logo {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 900; color: var(--white);
}
.admin-nav-logo span { color: var(--gold); }
.admin-nav-logo em { font-style: normal; font-size: 0.78rem; opacity: 0.5; margin-left: 8px; }
.admin-nav-actions { display: flex; align-items: center; gap: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.admin-nav-actions a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.admin-nav-actions a:hover { color: var(--gold); }
.admin-logout { color: #ef9a9a !important; }
.admin-layout { display: grid; grid-template-columns: 200px 1fr; min-height: calc(100vh - 60px); }
.admin-sidebar {
  background: var(--white); border-right: 1px solid var(--border);
  padding: 24px 0;
}
.admin-sidebar ul { list-style: none; }
.admin-sidebar li a {
  display: block; padding: 12px 24px;
  font-size: 0.9rem; color: var(--muted);
  transition: all 0.15s; border-left: 3px solid transparent;
}
.admin-sidebar li.active a,
.admin-sidebar li a:hover {
  color: var(--navy); background: var(--grey);
  border-left-color: var(--gold);
}
.admin-main { padding: 36px; overflow-y: auto; }
.admin-section { margin-bottom: 64px; }
.admin-section-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.admin-section-header h2 { font-size: 1.3rem; color: var(--navy); }
.admin-count {
  font-size: 0.78rem; color: var(--muted);
  background: var(--grey); padding: 3px 10px; border-radius: 10px;
}
.upload-form { margin-bottom: 28px; }
.upload-zone {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 32px; text-align: center; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 12px;
}
.upload-zone:hover { border-color: var(--navy); background: var(--grey); }
.upload-zone input { display: none; }
.upload-icon { font-size: 2rem; }
.upload-label { font-weight: 600; color: var(--navy); }
.upload-hint { font-size: 0.82rem; color: var(--muted); }
.btn-admin {
  background: var(--navy); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  padding: 10px 22px; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: background 0.15s;
}
.btn-admin:hover { background: #2d2d4e; }
.btn-admin-danger {
  background: #ffebee; color: var(--red);
  border: none; border-radius: var(--radius-sm);
  padding: 6px 12px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: background 0.15s;
}
.btn-admin-danger:hover { background: #ffcdd2; }
.btn-admin-sm {
  display: inline-block; background: var(--grey);
  color: var(--text); border: none; border-radius: var(--radius-sm);
  padding: 5px 12px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: background 0.15s; text-decoration: none;
}
.btn-admin-sm:hover { background: var(--border); }
.admin-images-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.admin-image-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.admin-image-card img { width: 100%; height: 130px; object-fit: cover; }
.admin-image-info { padding: 8px 10px; }
.admin-image-name { display: block; font-size: 0.72rem; color: var(--muted); word-break: break-all; margin-bottom: 4px; }
.admin-image-copy { font-size: 0.72rem; color: #2563eb; cursor: pointer; }
.admin-image-card form { padding: 0 10px 10px; }
.admin-details {
  background: var(--grey); border-radius: var(--radius-sm);
  padding: 16px 20px; margin-bottom: 24px;
}
.admin-details summary { font-weight: 600; font-size: 0.9rem; cursor: pointer; color: var(--navy); }
.admin-form { margin-top: 20px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th {
  background: var(--navy); color: var(--white);
  padding: 10px 14px; text-align: left;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px;
}
.admin-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--grey); }
.admin-table code { font-size: 0.78rem; color: var(--muted); }
.admin-actions { display: flex; gap: 6px; align-items: center; }
.admin-empty { font-size: 0.88rem; color: var(--muted); padding: 20px 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .voyages-grid { grid-template-columns: 1fr 1fr; }
  .voyage-row { grid-template-columns: 1fr; min-height: auto; }
  .voyage-row--reverse { direction: ltr; }
  .voyage-row-img { height: 260px; }
  .voyage-row-body { padding: 32px 28px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .offres-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .offre-card--featured { transform: none; }
  .about-vals { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}
@media (max-width: 640px) {
  .voyages-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .etape-photos--double,
  .etape-photos--triple { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .hero { min-height: auto; padding-bottom: 60px; }
  .voyage-cover { height: 80vh; }
  .admin-main { padding: 20px; }
}

/* ─── OFFRE CHOICES (brief) ─── */
.offre-choices { display: flex; flex-direction: column; gap: 12px; }
.offre-choice {
  display: flex; align-items: flex-start; gap: 14px;
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-weight: 400;
}
.offre-choice:hover { border-color: var(--navy); background: var(--grey); }
.offre-choice input[type="radio"] { flex-shrink: 0; margin-top: 4px; accent-color: var(--navy); }
.offre-choice input[type="radio"]:checked ~ .offre-choice-body { opacity: 1; }
.offre-choice:has(input:checked) { border-color: var(--navy); background: #f0f0f8; }
.offre-choice--featured { border-color: var(--gold); }
.offre-choice--featured:has(input:checked) { background: var(--gold-light); }
.offre-choice-body { flex: 1; }
.offre-choice-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.offre-choice-name { font-weight: 700; font-size: 0.98rem; color: var(--navy); }
.offre-choice-name em { font-style: normal; font-size: 0.75rem; color: var(--gold); margin-left: 6px; }
.offre-choice-price { font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; color: var(--navy); }
.offre-choice-features {
  list-style: none; display: flex; flex-direction: column; gap: 4px;
}
.offre-choice-features li { font-size: 0.83rem; color: var(--muted); }

/* ─── PREP DETAIL (brief) ─── */
.prep-detail {
  display: none; margin-top: 12px;
}
.prep-detail textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.92rem; resize: vertical; min-height: 80px;
  outline: none; transition: border-color 0.2s;
}
.prep-detail textarea:focus { border-color: var(--navy); }

/* ─── BRIEFS ADMIN ─── */
.admin-badge-alert {
  background: #fff3e0; color: #e65100;
  font-size: 0.75rem; font-weight: 700;
  padding: 3px 10px; border-radius: 10px;
}
.briefs-list { display: flex; flex-direction: column; gap: 20px; }
.brief-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.brief-card--nouveau  { border-left: 4px solid #f0c040; }
.brief-card--en_cours { border-left: 4px solid #1565c0; }
.brief-card--livré    { border-left: 4px solid var(--green); }
.brief-card-header {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  background: var(--grey);
}
.brief-card-id {
  font-size: 0.72rem; font-weight: 700; color: var(--muted);
  background: var(--border); padding: 3px 8px;
  border-radius: 6px; flex-shrink: 0; margin-top: 2px;
}
.brief-card-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.brief-card-info strong { font-size: 0.95rem; color: var(--navy); }
.brief-card-info span { font-size: 0.82rem; color: var(--muted); }
.brief-card-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.brief-statut {
  font-size: 0.75rem; font-weight: 700;
  padding: 3px 10px; border-radius: 10px;
}
.brief-statut--nouveau  { background: #fff8e1; color: #7a6000; }
.brief-statut--en_cours { background: #e3f2fd; color: #1565c0; }
.brief-statut--livré    { background: #e8f5e9; color: var(--green); }
.brief-date { font-size: 0.75rem; color: var(--muted); }
.brief-card-body {
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.brief-row {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 0.87rem; color: var(--text);
}
.brief-row--alert { color: #e65100; font-weight: 600; }
.brief-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted); flex-shrink: 0; min-width: 80px;
}
.brief-autofill {
  padding: 14px 20px; background: #f0f4ff;
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.brief-autofill-title {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: #3949ab; margin-bottom: 4px;
}
.brief-autofill-item {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 0.85rem;
}
.brief-notes {
  padding: 14px 20px; background: #fffde7;
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.brief-note-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem;
}
.brief-card-actions {
  padding: 14px 20px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.brief-statut-select {
  padding: 8px 12px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.88rem;
  outline: none; cursor: pointer;
}

.offre-note-visio {
  font-size: 0.78rem; color: var(--muted);
  margin-top: -16px; margin-bottom: 20px;
  font-style: italic;
}

.section-cta-banner[style*="background-image"] {
  position: relative;
}
.section-cta-banner[style*="background-image"]::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(240, 192, 64, 0.82);
}
.section-cta-banner[style*="background-image"] > * {
  position: relative; z-index: 1;
}

/* ── Timeline container ── */
.timeline {
  position: relative;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

/* Ligne centrale */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gold, #c9a84c);
  transform: translateX(-50%);
}

/* ── Chaque étape ── */
.timeline-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  position: relative;
  gap: 0;
}

/* Photo */
.timeline-img {
  width: calc(50% - 60px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.timeline-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Date au centre */
.timeline-date {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.timeline-date span {
  background: var(--gold, #c9a84c);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Texte */
.timeline-content {
  width: calc(50% - 60px);
  padding: 0 24px;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--navy, #1a1a2e);
}

.timeline-content p {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── Alternance gauche/droite ── */
.timeline-item.left {
  flex-direction: row; /* img | date | texte */
}

.timeline-item.right {
  flex-direction: row-reverse; /* texte | date | img */
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .timeline::before { left: 20px; }

  .timeline-item.left,
  .timeline-item.right {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }

  .timeline-img,
  .timeline-content { width: 100%; }

  .timeline-date {
    position: absolute;
    left: -15px;
    top: 0;
    width: auto;
  }
}

/* ─── VOYAGE BLOCKS ─── */
.admin-voyage-block {
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.admin-voyage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--admin-surface);
  border-bottom: 1px solid var(--admin-border);
}

.admin-voyage-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-voyage-info strong { font-size: 0.95rem; }
.admin-voyage-info code  { font-size: 0.78rem; color: var(--admin-muted); }
.admin-voyage-info span  { font-size: 0.8rem;  color: var(--admin-muted); }

/* ─── ÉTAPES ─── */
.admin-etapes {
  padding: 14px 16px;
  background: var(--admin-bg);
}

.admin-etapes-header {
  margin-bottom: 10px;
}

.admin-etapes-title {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--admin-muted);
}

.admin-table--sm td,
.admin-table--sm th {
  padding: 7px 10px;
  font-size: 0.83rem;
}

.admin-td-desc {
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-details--sm summary {
  font-size: 0.85rem;
  padding: 8px 10px;
}

.admin-form--sm .field label { font-size: 0.82rem; }
.admin-form--sm .field input,
.admin-form--sm .field textarea,
.admin-form--sm .field select { font-size: 0.85rem; }

.admin-empty--sm {
  font-size: 0.85rem;
  padding: 8px 0;
}
