@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text, #1b2533);
  background: var(--light, #f5f7fa);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { transition: color .15s; }

/* ── Navigation ────────────────────────────────────────────────────── */
.site-nav {
  background: var(--navy);
  color: #fff;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.site-logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
}
.site-logo-accent { color: var(--gold); }
.site-logo-sub {
  display: block;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 5px;
  font-weight: 600;
  text-transform: uppercase;
}
.site-logo img { height: 42px; width: auto; object-fit: contain; }

.site-nav-links { display: flex; align-items: center; gap: 4px; }
.site-nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}
.site-nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.site-nav-links a.nav-cta {
  background: var(--gold);
  color: #000;
  margin-left: 8px;
  border-radius: 999px;
  padding: 10px 22px;
}
.site-nav-links a.nav-cta:hover { background: var(--gold-dark); color: #000; }

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-align: center;
}
.btn:hover { background: var(--gold-dark); }
.btn:active { transform: scale(.98); }

.btn-green {
  background: var(--navy);
  color: #fff;
}
.btn-green:hover { background: var(--navy-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { display: block; width: 100%; }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  min-height: 580px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 6%;
  color: #fff;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay pour image : assombri uniformément */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 100%);
}

/* Gradient de marque quand pas d'image */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--c-primary) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.07;
  margin-bottom: 18px;
}
.hero h1 .hl { color: var(--gold); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Sections ──────────────────────────────────────────────────────── */
.section { padding: 72px 6%; }
.section-light { background: var(--light); }
.section-dark  { background: var(--navy); color: #fff; }
.section-white { background: #fff; }

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-title.centered { text-align: center; }
.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
}
.section-sub.centered { text-align: center; }

/* ── Deal cards ────────────────────────────────────────────────────── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.deal-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.16);
}

.deal-card-img { width: 100%; height: 210px; object-fit: cover; }

.deal-card-placeholder {
  width: 100%; height: 210px;
  background: linear-gradient(135deg, var(--navy), var(--c-primary));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; gap: 4px;
}
.deal-card-placeholder .pl-icon  { font-size: 46px; }
.deal-card-placeholder .pl-name  { font-size: 17px; font-weight: 700; }
.deal-card-placeholder .pl-ctry  { font-size: 13px; color: rgba(255,255,255,.65); }

.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #000;
  padding: 5px 11px; border-radius: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.card-badge-red {
  position: absolute; top: 12px; right: 12px;
  background: var(--red); color: #fff;
  padding: 5px 11px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
}

.deal-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.deal-dest {
  font-size: 11px; text-transform: uppercase;
  font-weight: 700; color: var(--muted); letter-spacing: 1px; margin-bottom: 4px;
}
.deal-title {
  font-size: 17px; font-weight: 700; color: var(--navy);
  line-height: 1.3; margin-bottom: 12px;
}
.deal-meta { font-size: 13px; color: var(--muted); margin-bottom: 3px; }

.deal-price-block { margin: 14px 0; }
.deal-price-label {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; font-weight: 600; letter-spacing: .5px;
}
.deal-price {
  font-size: 34px; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.deal-price-unit { font-size: 13px; color: var(--muted); margin-top: 2px; }

.deal-seats {
  font-size: 13px; font-weight: 700;
  color: var(--red); margin-bottom: 16px;
}
.deal-seats.ok { color: var(--navy); }

.deal-card-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 4px; }
.deal-card-actions .btn { flex: 1; padding: 12px 8px; font-size: 13px; }

/* ── Features bar ──────────────────────────────────────────────────── */
.features-bar {
  background: var(--navy);
  padding: 60px 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  color: #fff;
}
.feature-icon {
  width: 70px; height: 70px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-text  { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ── Newsletter ────────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--navy);
  color: #fff;
  padding: 72px 6%;
  text-align: center;
}
.newsletter-section h2  { font-size: 30px; font-weight: 800; margin-bottom: 10px; }
.newsletter-section p   { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 32px; }
.newsletter-form {
  display: flex; gap: 12px;
  max-width: 540px; margin: 0 auto; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input {
  flex: 1; min-width: 180px;
  padding: 15px 20px; border-radius: 8px; border: none;
  font-size: 14px; font-family: inherit;
}
.newsletter-form .btn { padding: 15px 28px; }

/* ── Flash messages ────────────────────────────────────────────────── */
.flash-wrap { max-width: 1100px; margin: 16px auto 0; padding: 0 6%; }
.flash {
  padding: 14px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 500; margin-bottom: 8px;
}
.flash-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.flash-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.flash-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Deal detail ───────────────────────────────────────────────────── */
.detail-container { max-width: 1100px; margin: 0 auto; padding: 48px 6%; }
.detail-back { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; display: inline-block; margin-bottom: 28px; }
.detail-back:hover { text-decoration: underline; }
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }

.detail-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px; margin-bottom: 24px;
}
.detail-card h2 {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--light);
}
.detail-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
.detail-label {
  font-size: 11px; text-transform: uppercase; font-weight: 700;
  color: var(--muted); letter-spacing: .5px; margin-bottom: 3px;
}
.detail-value { font-size: 15px; font-weight: 600; color: var(--text); }

.incl-item { display: flex; gap: 10px; font-size: 14px; padding: 7px 0; border-bottom: 1px solid var(--light); }
.incl-item:last-child { border-bottom: none; }
.incl-icon { flex-shrink: 0; margin-top: 1px; }
.icon-ok  { color: #22c55e; }
.icon-no  { color: var(--red); }

/* ── Price sidebar ─────────────────────────────────────────────────── */
.price-sidebar {
  background: var(--navy); color: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 28px; position: sticky; top: 96px;
}
.price-sidebar-label {
  font-size: 11px; text-transform: uppercase;
  color: rgba(255,255,255,.55); letter-spacing: 1px; margin-bottom: 4px;
}
.price-sidebar-amount { font-size: 42px; font-weight: 800; color: var(--gold); line-height: 1; }
.price-sidebar-unit   { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.price-sidebar-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.price-sidebar-row:last-of-type { border-bottom: none; }
.price-sidebar-row strong { font-weight: 700; }
.psb-btn { display: block; width: 100%; text-align: center; margin-top: 20px; padding: 16px; font-size: 15px; }

.seats-badge {
  display: block; text-align: center;
  background: rgba(255,255,255,.12); color: #fff;
  padding: 9px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 700; margin: 16px 0;
}
.seats-badge.urgent { background: rgba(230,57,70,.25); color: #fca5a5; }

/* ── Form pages ────────────────────────────────────────────────────── */
.form-page { max-width: 680px; margin: 0 auto; padding: 56px 24px; }
.form-hero {
  background: linear-gradient(135deg, var(--navy), var(--c-primary));
  color: #fff; text-align: center; padding: 56px 6%;
}
.form-hero .badge { margin-bottom: 12px; }
.form-hero h1 { font-size: 34px; font-weight: 800; margin-bottom: 8px; }
.form-hero p  { font-size: 16px; color: rgba(255,255,255,.75); }

.form-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 40px;
}
.form-card label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 14px; font-family: inherit; color: var(--text);
  background: #fff; transition: border-color .15s, box-shadow .15s;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row    { margin-bottom: 20px; }
.form-hint   { font-size: 12px; color: var(--muted); margin-top: 5px; }

/* ── Confirmation ──────────────────────────────────────────────────── */
.confirm-page { max-width: 500px; margin: 0 auto; padding: 80px 24px; text-align: center; }
.confirm-icon  { font-size: 80px; margin-bottom: 24px; }
.confirm-title { font-size: 34px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.confirm-text  { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.confirm-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ── Contact ───────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.contact-info-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px;
}
.contact-info-card h2 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-icon { font-size: 26px; flex-shrink: 0; }
.contact-info-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.contact-info-value { font-size: 15px; color: var(--text); font-weight: 500; }
.contact-info-value a { color: var(--navy); text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }
.contact-cta-card {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 32px; display: flex; flex-direction: column; justify-content: center;
}
.contact-cta-card h3 { font-size: 20px; font-weight: 800; color: #000; margin-bottom: 10px; }
.contact-cta-card p  { font-size: 14px; color: rgba(0,0,0,.65); margin-bottom: 24px; line-height: 1.6; }
.contact-cta-card .btn-green { display: inline-block; }

/* ── Footer ────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); color: #fff; padding: 60px 6% 0; margin-top: 80px; }
.site-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.site-footer h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.site-footer p  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }
.site-footer a  { display: block; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 10px; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-logo { font-size: 22px; font-weight: 800; letter-spacing: 2px; color: #fff; margin-bottom: 12px; }
.footer-logo-accent { color: var(--gold); }
.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; text-align: center;
  font-size: 12px; color: rgba(255,255,255,.3);
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .deals-grid        { grid-template-columns: repeat(2, 1fr); }
  .features-bar      { grid-template-columns: repeat(2, 1fr); }
  .detail-layout     { grid-template-columns: 1fr; }
  .price-sidebar     { position: static; }
  .hero h1           { font-size: 42px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; height: auto; min-height: 64px; }
  .site-logo { font-size: 20px; }
  .site-nav-links a:not(.nav-cta) { display: none; }

  .hero { padding: 56px 24px; min-height: 460px; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 16px; }

  .section { padding: 48px 24px; }
  .section-title { font-size: 28px; }

  .deals-grid     { grid-template-columns: 1fr; }
  .features-bar   { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .contact-grid   { grid-template-columns: 1fr; }
  .detail-grid-2  { grid-template-columns: 1fr; }
  .form-grid-2    { grid-template-columns: 1fr; }
  .form-card      { padding: 28px 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .site-footer-grid { grid-template-columns: 1fr; }
  .confirm-actions  { flex-direction: column; align-items: center; }
}
