/* ============================================================
   THE TRAVEL PLANNER — shared design system
   Brand (rebrand Jul 2026): navy #01255F · mustard #E2A502 · Santorini blue #1661BC
   ============================================================ */
:root {
  /* Official rebrand (Jul 2026): navy #01255F · mustard #E2A502 · Santorini blue #1661BC · cloud #F1F5FE
     Var names kept for compatibility: --red now maps to brand navy, --teal to Santorini blue. */
  --red: #01255F;
  --red-dark: #001A45;
  --gold: #E2A502;
  --gold-soft: #F2D27F;
  --teal: #1661BC;
  --teal-deep: #0F4A93;
  --navy: #041D42;
  --navy-soft: #0A2B56;
  --ink: #1C2333;
  --muted: #5F6B80;
  --cream: #F7F9FE;
  --cream-dark: #E2E9F5;
  --white: #FFFFFF;
  --line: rgba(4, 29, 66, .12);
  --shadow-sm: 0 4px 14px rgba(13, 27, 36, .08);
  --shadow-md: 0 14px 40px rgba(13, 27, 36, .14);
  --shadow-lg: 0 24px 70px rgba(13, 27, 36, .22);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* Her brand script font (from the official rebrand pack) */
@font-face {
  font-family: 'Best Holiday';
  src: url('fonts/BestHoliday.ttf') format('truetype');
  font-display: swap;
}
.script { font-family: 'Playfair Display', Georgia, serif; font-style: italic; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-deep); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; }

/* language toggle */
body.lang-af .en { display: none !important; }
body.lang-en .af { display: none !important; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .22em;
  font-size: .72rem; font-weight: 700; color: var(--red); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 34px; height: 1.5px; background: var(--gold); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 660px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; padding: 14px 30px; font-weight: 600; font-size: .95rem;
  text-decoration: none; cursor: pointer; border: none; font-family: var(--font-body);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(1,37,95, .35); }
.btn-primary:hover { background: var(--red-dark); }
.btn-wa { background: #1FBF5F; color: #fff; box-shadow: 0 10px 26px rgba(18, 140, 70, .35); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.75); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn-outline-dark { border: 1.5px solid var(--line); color: var(--ink); background: transparent; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #B08A2E); color: #fff; box-shadow: 0 10px 26px rgba(176, 138, 46, .35); }

/* ---------- header / nav ---------- */
header.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: background .25s ease, box-shadow .25s ease;
  background: linear-gradient(180deg, rgba(9, 20, 28, .62), rgba(9, 20, 28, 0));
}
header.site-head.scrolled {
  background: rgba(247, 249, 254, .96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 24px; max-width: 1240px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-badge {
  background: var(--red); color: #fff; border-radius: 10px; padding: 7px 12px;
  font-family: var(--font-display); line-height: 1.02; text-align: left;
  box-shadow: 0 4px 14px rgba(1,37,95, .45); flex: none;
}
.logo-badge .the { font-size: .58rem; font-style: italic; display: block; opacity: .92; }
.logo-badge .main { font-size: .92rem; font-weight: 700; display: block; }
.logo-name { font-size: .78rem; line-height: 1.35; color: #E9E2D5; transition: color .25s ease; }
.logo-name strong { display: block; font-size: .92rem; color: #fff; font-family: var(--font-display); letter-spacing: .02em; transition: color .25s ease; }
header.scrolled .logo-name { color: var(--muted); }
header.scrolled .logo-name strong { color: var(--ink); }

nav.menu { display: flex; align-items: center; gap: 26px; }
nav.menu > a { text-decoration: none; font-size: .9rem; font-weight: 600; color: #F3EFE6; transition: color .2s ease; }
nav.menu > a:hover { color: var(--gold-soft); }
header.scrolled nav.menu > a { color: var(--ink); }
header.scrolled nav.menu > a:hover { color: var(--red); }
nav.menu .nav-cta { background: var(--red); color: #fff !important; padding: 10px 20px; border-radius: 999px; box-shadow: 0 6px 18px rgba(1,37,95,.4); }
nav.menu .nav-cta:hover { background: var(--red-dark); }
.lang-btn {
  border: 1.5px solid currentColor; background: transparent; border-radius: 999px;
  padding: 6px 14px; font-weight: 700; font-size: .78rem; cursor: pointer;
  color: #F3EFE6; font-family: var(--font-body);
}
header.scrolled .lang-btn { color: var(--teal-deep); }
@media (max-width: 880px) { nav.menu > a.hide-m { display: none; } }

/* wordmark image logo (rebrand) */
.logo-img { height: 44px; width: auto; flex: none; }
@media (max-width: 560px) { .logo-img { height: 36px; } }

/* light hero pages: header starts transparent over a LIGHT background,
   so nav text must be dark from the start */
body.light-hero header.site-head { background: linear-gradient(180deg, rgba(247,249,254,.85), rgba(247,249,254,0)); }
body.light-hero header.site-head .logo-name { color: var(--muted); }
body.light-hero header.site-head .logo-name strong { color: var(--ink); }
body.light-hero header.site-head nav.menu > a { color: var(--ink); }
body.light-hero header.site-head nav.menu > a:hover { color: var(--red); }
body.light-hero header.site-head .lang-btn { color: var(--teal-deep); }
body.light-hero .burger span { background: var(--ink); }
body.drawer-open.light-hero .burger span { background: #fff; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- forms ---------- */
label { font-size: .78rem; font-weight: 700; color: var(--muted); display: block; margin: 14px 0 5px; letter-spacing: .04em; text-transform: uppercase; }
input, select, textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--teal); border-color: var(--teal); }

/* ---------- footer ---------- */
footer.site {
  background: var(--navy); color: #96A3AC; padding: 70px 0 0; font-size: .9rem;
}
footer.site .cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px;
}
@media (max-width: 880px) { footer.site .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { footer.site .cols { grid-template-columns: 1fr; } }
footer.site h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
footer.site a { color: #C7D2D9; text-decoration: none; }
footer.site a:hover { color: var(--gold-soft); }
footer.site ul { list-style: none; display: grid; gap: 10px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex;
  justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .8rem; color: #7B8A94;
}

/* ---------- floating whatsapp ---------- */
.fab-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  background: #1FBF5F; color: #fff; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  box-shadow: 0 12px 30px rgba(18, 140, 70, .45); transition: transform .2s ease;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- utility ---------- */
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 999px;
  padding: 8px 16px; font-size: .82rem; font-weight: 600;
  background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.text-gold { color: var(--gold); }
::selection { background: var(--red); color: #fff; }

/* ---------- announcement marquee (inside header, hides on scroll) ---------- */
.marquee {
  overflow: hidden; background: var(--navy); color: #F2D27F;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  max-height: 34px; transition: max-height .3s ease;
}
header.scrolled .marquee { max-height: 0; }
.marquee-track {
  display: inline-flex; white-space: nowrap; padding: 9px 0;
  animation: marquee 38s linear infinite; will-change: transform;
}
.marquee-track span { padding: 0 26px; }
.marquee-track .sep { color: var(--gold); padding: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- header phone ---------- */
.nav-phone { font-variant-numeric: tabular-nums; letter-spacing: .04em; }

/* ---------- hamburger + mobile drawer ---------- */
.burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 130;
}
.burger span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s ease;
}
header.scrolled .burger span { background: var(--ink); }
body.drawer-open .burger span { background: #fff; }
body.drawer-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.drawer-open .burger span:nth-child(2) { opacity: 0; }
body.drawer-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 880px) {
  .burger { display: flex; }
  nav.menu > a.hide-m, nav.menu .nav-phone { display: none; }
}
.drawer {
  position: fixed; inset: 0; z-index: 120; background: rgba(2,24,53,.97);
  backdrop-filter: blur(10px); display: flex; flex-direction: column; justify-content: center;
  padding: 40px 34px; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
body.drawer-open .drawer { opacity: 1; pointer-events: auto; }
.drawer a {
  font-family: var(--font-display); font-size: 1.9rem; color: #F3EFE6; text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0; transform: translateY(14px); transition: opacity .4s ease, transform .4s ease;
}
body.drawer-open .drawer a { opacity: 1; transform: none; }
.drawer a:hover { color: var(--gold-soft); }
.drawer .drawer-foot { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 140;
  background: linear-gradient(90deg, var(--red), var(--gold)); transition: width .1s linear;
}

/* ---------- back to top ---------- */
.to-top {
  position: fixed; left: 22px; bottom: 22px; z-index: 80; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px); color: var(--ink); font-size: 1.1rem; cursor: pointer;
  box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease;
  transform: translateY(8px);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: #fff; }

/* cookie notice */
.cookie-bar{position:fixed;left:16px;right:16px;bottom:16px;z-index:95;max-width:640px;margin:0 auto;background:var(--navy);color:#E7ECF3;border-radius:14px;padding:14px 18px;display:flex;align-items:center;gap:14px;box-shadow:var(--shadow-lg);font-size:.83rem;line-height:1.5;}
.cookie-bar a{color:var(--gold-soft);font-weight:700;}
.cookie-bar .cookie-ok{flex:none;background:var(--gold);color:#3a2c07;border:none;border-radius:999px;padding:9px 24px;font-weight:800;cursor:pointer;font-family:inherit;}
@media(max-width:480px){.cookie-bar{flex-direction:column;align-items:stretch;text-align:center;}.cookie-bar .cookie-ok{width:100%;}}
