/* ==========================================================================
   GLOBÉO — Feuille de style principale
   Palette de marque, tirée directement des deux logos :
     --navy-deep    #151B32   bleu marine (Le Maître du Voyage)
     --navy-mid     #202A4A   bleu marine, ton légèrement plus clair
     --gold-warm    #B98F49   or (Le Maître du Voyage)
     --globeo-orange #E94E1A  orange (Globéo — utilisé pour les actions/accents)
     --globeo-gray  #575656   gris (Globéo)
     --sand         #F6F1E7   sable clair (fonds de section)
     --ink          #1D2530   texte principal
     --white        #FFFFFF
   Logique : structure et prestige en bleu marine/or (Le Maître du Voyage),
   actions et accents en orange (Globéo), pour que les deux marques
   cohabitent clairement sur chaque page.
   Typographie :
     Display : "Fraunces" (serif chaleureuse, évoque l'aventure/l'élégance)
     Texte   : "Work Sans" (sans-serif claire, très lisible mobile)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy-deep: #151B32;
  --navy-mid: #202A4A;
  --gold-warm: #B98F49;
  --gold-soft: #DCC69A;
  --globeo-orange: #E94E1A;
  --globeo-orange-dark: #C93F12;
  --globeo-gray: #575656;
  --sand: #F6F1E7;
  --ink: #1D2530;
  --white: #FFFFFF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', Arial, sans-serif;
  --radius: 6px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--navy-mid); }

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-warm);
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--globeo-orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--globeo-orange-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy-deep); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-mid);
  color: var(--navy-mid);
}
.btn-outline-dark:hover { background: var(--navy-mid); color: var(--white); }

/* ---------- Barre d'affiliation (logos Globéo + Le Maître du Voyage) ---------- */
.affiliation-bar {
  background: var(--navy-deep);
  padding: 14px 24px;
}
.affiliation-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--gold-soft);
  text-align: center;
  flex-wrap: wrap;
}
.affiliation-bar img {
  height: 42px;
  width: auto;
  background: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
}
@media (max-width: 640px) {
  .affiliation-bar-inner { font-size: 0.82rem; }
  .affiliation-bar img { height: 34px; }
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-logos img {
  height: 46px;
  width: auto;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 4px;
}
.footer-logos .divider {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #e9e2d3;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy-deep);
  text-decoration: none;
}
.logo span { color: var(--gold-warm); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--gold-warm); }

/* ---------- Menu déroulant Croisières ---------- */
.nav-item-dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid #e9e2d3;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  min-width: 240px;
  padding: 8px 0;
  z-index: 200;
}
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.is-open .dropdown-menu {
  display: block;
}
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 0.92rem;
}
.dropdown-menu a:hover { background: var(--sand); }
.dropdown-menu .autre-item a { color: var(--globeo-orange); font-weight: 600; }
@media (max-width: 860px) {
  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    min-width: 0;
  }
  .nav-item-dropdown.is-open .dropdown-menu { display: block; }
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy-deep);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid #e9e2d3;
    gap: 16px;
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-with-photo { padding: 0; }
.hero-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}
@media (max-width: 860px) {
  .hero-photo-grid { grid-template-columns: 1fr; }
}
.hero-photo-text {
  padding: 90px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 70%;
}

.hero-inner {
  max-width: 720px;
}

.hero h1 { color: var(--white); }

.hero .slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-soft);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ---------- Bande de confiance ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid #e9e2d3;
  padding: 20px 0;
}
.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}
.trust-strip-item {
  font-size: 0.88rem;
  color: var(--navy-deep);
  font-weight: 600;
}
.trust-strip-item span {
  display: block;
  font-weight: 400;
  color: #6b7280;
  font-size: 0.78rem;
}
.section { padding: 80px 0; }
.section-sand { background: var(--sand); }

.section-intro {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ---------- Value props (3 colonnes) ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 780px) {
  .value-grid { grid-template-columns: 1fr; }
}
.value-card {
  background: var(--white);
  border: 1px solid #e9e2d3;
  border-radius: var(--radius);
  padding: 32px 28px;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { margin-bottom: 0; color: #4a5361; }

/* ---------- Photos bio (page À propos) ---------- */
.bio-photo {
  width: 100%;
  max-width: 320px;
  height: 320px;
  border-radius: var(--radius);
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border: 4px solid var(--gold-warm);
}

/* ---------- Cartes de croisières ---------- */
.cruise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 780px) {
  .cruise-grid { grid-template-columns: 1fr; }
}

.cruise-card {
  border: 1px solid #e9e2d3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.cruise-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--sand);
}

.cruise-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.cruise-dates {
  font-weight: 600;
  color: var(--gold-warm);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.cruise-itinerary {
  color: #4a5361;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.cruise-card-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Bloc brochure intégrée ---------- */
.brochure-block {
  background: var(--white);
  border: 1px solid #e9e2d3;
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 24px;
}
.brochure-block h3 { margin-bottom: 6px; }
.brochure-toggle {
  background: none;
  border: none;
  color: var(--navy-mid);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 0.95rem;
  text-decoration: underline;
}
.brochure-content {
  margin-top: 24px;
  display: none;
}
.brochure-content.is-open { display: block; }
.brochure-content h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  margin: 24px 0 8px;
}
.brochure-content ul { padding-left: 20px; }
.brochure-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}
@media (max-width: 780px) {
  .brochure-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Formulaire de réservation (Zoho Web-to-Lead) ---------- */
.reservation-form {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-deep);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid #d8cfb8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-consent { font-size: 0.85rem; color: #4a5361; }
.form-submit-row { margin-top: 22px; }
.form-note { font-size: 0.82rem; color: #6b7280; margin-top: 14px; }

/* ---------- Formulaire Zoho réel (restylé pour Globéo) ---------- */
.globeo-zoho-form { background: var(--sand); border-radius: var(--radius); padding: 40px; }
.globeo-zoho-form select,
.globeo-zoho-form input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8cfb8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}
.globeo-zoho-form label { font-weight: 600; font-size: 0.9rem; color: var(--navy-deep); display:block; margin-bottom:6px; }

/* ---------- Page croisière : bandeau titre avec photo ---------- */
.cruise-hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}
.cruise-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}
@media (max-width: 860px) {
  .cruise-hero-grid { grid-template-columns: 1fr; }
}
.cruise-hero-text {
  padding: 70px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cruise-hero-text h1 { color: var(--white); }
.cruise-hero img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.cruise-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  font-size: 0.92rem;
  color: var(--gold-soft);
}

/* ---------- Bandeau prix / urgence ---------- */
.price-ribbon {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  background: var(--globeo-orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  margin-top: 22px;
}
.price-ribbon-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}
.price-ribbon-note {
  font-size: 0.8rem;
  color: #ffe4d6;
}

/* ---------- Barre CTA fixe (mobile) ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  padding: 12px 16px;
  z-index: 300;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta-price {
  color: var(--gold-soft);
  font-size: 0.8rem;
  line-height: 1.2;
}
.sticky-cta-price strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-display);
}
.sticky-cta .btn { white-space: nowrap; padding: 10px 18px; }
@media (max-width: 640px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
}

/* ---------- Inventaire des cabines (à éditer souvent) ---------- */
.inventaire-note {
  background: #FFF7E6;
  border: 1px solid var(--gold-warm);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #6b4b18;
  margin-bottom: 28px;
}
.inventaire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.inventaire-card {
  background: var(--white);
  border: 1px solid #e9e2d3;
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.inventaire-card .cat {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.inventaire-card .dispo {
  font-size: 0.8rem;
  color: #8a7a55;
  margin-bottom: 10px;
}
.inventaire-card .prix {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--navy-deep);
  font-weight: 700;
}
.inventaire-card .prix-apres {
  font-size: 0.78rem;
  color: #8a8a8a;
  margin-top: 4px;
}
.inventaire-card .epuise {
  color: #b23a3a;
  font-weight: 600;
}

/* ---------- Tableau itinéraire ---------- */
.itineraire-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.itineraire-table th {
  background: var(--navy-deep);
  color: var(--white);
  text-align: left;
  padding: 10px 14px;
}
.itineraire-table td {
  padding: 9px 14px;
  border-bottom: 1px solid #ece5d4;
}
.itineraire-table tr:nth-child(even) td { background: var(--sand); }

/* ---------- Points forts (liste croisière) ---------- */
.points-forts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
@media (max-width: 640px) { .points-forts { grid-template-columns: 1fr; } }
.points-forts li {
  padding-left: 26px;
  position: relative;
  color: #3a4250;
}
.points-forts li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: var(--gold-warm);
  font-weight: 700;
}

/* ---------- FAQ (details/summary natif) ---------- */
.faq-item {
  border: 1px solid #e9e2d3;
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
}
.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  color: var(--navy-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 1.3rem;
  color: var(--globeo-orange);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: #4a5361;
}
.site-footer {
  background: var(--navy-deep);
  color: #cdd8e3;
  padding: 56px 0 28px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #cdd8e3; text-decoration: none; }
.site-footer a:hover { color: var(--gold-warm); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.8rem;
  color: #8fa1b3;
}
