/* ═══════════════════════════════════════════════════════════════
   Zanzibar Adventures by Abdul — Zourney-Theme (SOLE stylesheet)
   Replaces main-*.css entirely. Defines reset + base + all components.
   Palette: #E46D30 primary · #db5d1c hover · #ecbe1d accent · #1a1a2e footer
   Fonts: Lobster Two (display: logo + h1/h2) · Jost (UI/h3+) · Roboto (body)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,700&family=Jost:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* ─── Tokens ─── */
:root {
  --primary:      #E46D30;
  --primary-h:    #db5d1c;
  --accent:       #ecbe1d;
  --ink:          #222831;
  --muted:        #6b7280;
  --sand:         #fdf6ee;
  --line:         #e8e4dd;
  --white:        #ffffff;
  --footer-bg:    #1a1a2e;
  --radius:       14px;
  --radius-btn:   8px;
  --shadow-sm:    0 2px 14px rgba(0,0,0,.07);
  --shadow-md:    0 10px 34px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 56px rgba(0,0,0,.18);
  --container:    1200px;

  /* Legacy vars referenced by inline HTML styles — keep them mapped */
  --c-sand:       #fdf6ee;
  --c-muted:      #6b7280;
  --c-ink:        #222831;
  --c-sunset:     #E46D30;
  --c-ocean:      #E46D30;
  --c-ocean-deep: #1a1a2e;
}

/* ─── Reset / Base ─── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
ul { list-style: none; padding: 0; }
strong { font-weight: 700; }
small { font-size: .82em; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.015em;
  color: var(--ink);
}
/* Display headings (h1/h2) use the Lobster Two display face for beachy character */
h1, h2 {
  font-family: 'Lobster Two', 'Jost', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

section { padding: 86px 0; }

/* ─── Header / Nav (sticky white) ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
/* Text logo fallback (legacy) */
.logo-text {
  font-family: 'Lobster Two', 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0;
  color: var(--ink);
  white-space: nowrap;
}
.logo-text span { color: var(--primary); }

nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.primary-nav { margin-left: auto; }

.primary-nav a {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.primary-nav a:hover,
.primary-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.lang-switch {
  gap: 4px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.lang-switch a {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--muted);
  padding: 4px 9px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all .15s;
}
.lang-switch a:hover { color: var(--primary); }
.lang-switch a.active {
  color: var(--primary);
  background: #fdf0e8;
  border-color: #fbd7be;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 30px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, transform .12s, box-shadow .18s;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(228,109,48,.4);
}
.btn-primary:hover {
  background: var(--primary-h);
  transform: translateY(-2px);
  box-shadow: 0 9px 26px rgba(228,109,48,.5);
}
.btn-outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,.8);
}
.btn-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-book {
  background: var(--primary);
  color: #fff;
  width: 100%;
  margin-top: auto;
  box-shadow: 0 4px 16px rgba(228,109,48,.3);
}
.btn-book:hover {
  background: var(--primary-h);
  transform: translateY(-1px);
  box-shadow: 0 7px 22px rgba(228,109,48,.42);
}

/* ─── Hero (80vh image + gradient overlay) ─── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a2e;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(26,26,46,.85) 0%,
    rgba(26,26,46,.55) 48%,
    rgba(26,26,46,.18) 100%
  );
}
.hero .container { position: relative; z-index: 2; }
.hero-text { max-width: 680px; color: #fff; }
.hero-text h1 {
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.08;
  text-shadow: 0 3px 22px rgba(0,0,0,.4);
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(236,190,29,.14);
  border: 1px solid rgba(236,190,29,.4);
  padding: 6px 14px;
  border-radius: 24px;
  margin-bottom: 18px;
}
.hero-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,.92);
  margin-bottom: 34px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Trust strip ─── */
.trust-strip {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .03em;
  padding: 14px 0;
}
.trust-strip .container { padding: 0 24px; }

/* ─── Info band ─── */
.info-band { background: var(--sand); padding: 56px 0; }
.info-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.info-band-item h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 8px;
}
.info-band-item p { color: var(--ink); font-size: .96rem; }

/* ─── Section eyebrow + intro ─── */
.section-eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(228,109,48,.1);
  padding: 5px 14px;
  border-radius: 24px;
  margin-bottom: 14px;
}
.section-intro {
  font-family: 'Roboto', sans-serif;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 760px;
  margin: 14px 0 44px;
}
section > .container > h1,
section > .container > h2 { margin-bottom: 8px; }

/* ─── Tour cards (3-col grid) ─── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform .22s, box-shadow .22s;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.tour-photo {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.tour-body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 24px;
  flex: 1;
}
.tour-meta {
  display: flex;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: .76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.tour-body h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0;
}
.tour-rating {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  color: var(--accent);
}
.tour-rating span { color: var(--muted); font-weight: 400; font-size: .82rem; }
.tour-booked {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: .83rem;
  color: #16a34a;
}
.tour-from {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
}
.tour-from strong { font-size: 1.4rem; font-weight: 700; color: var(--primary); }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 22px;
  box-shadow: 0 3px 10px rgba(228,109,48,.4);
}

/* ─── Tier cards ─── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
  box-shadow: 0 12px 34px rgba(228,109,48,.16);
}
.tier-card.featured::before {
  content: "Beliebt";
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--primary);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 22px;
  box-shadow: 0 3px 10px rgba(228,109,48,.4);
}
html[lang="en"] .tier-card.featured::before { content: "Popular"; }

.tier-name {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
}
.tier-price {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--primary);
}
.tier-price small { font-size: .82rem; font-weight: 400; color: var(--muted); }
.tier-price .price-strike {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 8px;
}
.tier-price-alt {
  font-family: 'Roboto', sans-serif;
  font-size: .82rem;
  color: var(--muted);
  margin: -6px 0 10px;
}
.tier-discount-badge {
  display: inline-block;
  background: var(--accent);
  color: #1a1a2e;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .03em;
  padding: 4px 12px;
  border-radius: 22px;
  margin: 4px 0;
  width: fit-content;
}
.tier-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 20px;
}
.tier-features li {
  position: relative;
  padding-left: 24px;
  font-family: 'Roboto', sans-serif;
  font-size: .93rem;
  line-height: 1.5;
  color: var(--ink);
}
.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.book-cta-sub {
  font-family: 'Roboto', sans-serif;
  font-size: .76rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}
.badge-most-booked {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 22px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(228,109,48,.4);
}

/* ─── About band ─── */
.about-band { background: var(--sand); padding: 86px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.about-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-text h2 { margin: 8px 0 16px; }
.about-text p { font-size: 1.06rem; color: var(--ink); }

/* ─── Highlight lists (tour detail inline ul/li) ─── */
section ul[style] li {
  border-left: 3px solid var(--primary);
}

/* ─── Risk reversal ─── */
.risk-reversal { background: linear-gradient(180deg, var(--sand) 0%, #fff 100%); padding: 76px 0; }
.risk-reversal h2 { text-align: center; margin-bottom: 40px; }
.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.risk-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.risk-item h4 { font-family: 'Jost', sans-serif; font-weight: 600; color: #16a34a; margin-bottom: 8px; font-size: 1rem; }
.risk-item p { font-size: .9rem; color: var(--ink); line-height: 1.55; }

/* ─── FAQ ─── */
.faq { background: #fff; padding: 76px 0; }
.faq-item {
  background: var(--sand);
  border: 1px solid rgba(228,109,48,.13);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 18px 22px;
}
.faq-item summary {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform .2s;
}
details[open].faq-item summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin-top: 12px; font-size: .95rem; color: var(--muted); line-height: 1.65; }

/* ─── Gallery ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0;
}
.gallery img,
.gallery-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .2s, box-shadow .2s;
}
.gallery img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* ─── WhatsApp float ─── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 290px;
  background: #25d366;
  color: #fff;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(37,211,102,.55); }
.wa-float-icon { font-size: 1.45rem; }
.wa-float-text { display: flex; flex-direction: column; line-height: 1.2; }
.wa-float-text strong { font-family: 'Jost', sans-serif; font-weight: 600; font-size: .9rem; }
.wa-float-text small { font-size: .73rem; opacity: .85; }

/* ─── Footer (dark, 3-4 col) ─── */
footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.8);
  padding: 70px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-grid h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 16px;
}
.footer-grid a {
  display: block;
  font-family: 'Roboto', sans-serif;
  color: rgba(255,255,255,.66);
  padding: 5px 0;
  font-size: .92rem;
  transition: color .15s;
}
.footer-grid a:hover { color: #fff; }
.footer-grid p { font-size: .88rem; color: rgba(255,255,255,.66); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ─── Generic content (legal/kontakt pages without component classes) ─── */
main { min-height: 50vh; }
section h3 { margin-top: 4px; }

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid  { grid-template-columns: 1fr; }
  .info-band-grid { grid-template-columns: repeat(2, 1fr); }
  .risk-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery    { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 56px 0; }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .primary-nav { gap: 14px; }
  .primary-nav a { font-size: .88rem; }
  .tours-grid { grid-template-columns: 1fr; }
  .info-band-grid { grid-template-columns: 1fr; }
  .risk-grid  { grid-template-columns: 1fr; }
  .gallery    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero { min-height: 70vh; }
}

@media (max-width: 480px) {
  .wa-float-text { display: none; }
  .wa-float { padding: 15px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
