/* ============================================================
   RE TRAVEL · One-Pager Styles
   ------------------------------------------------------------
   DESIGN-TOKENS (→ Elementor Global Colors / Fonts / Spacing)
   Alles Weitere leitet sich strikt aus diesen Tokens ab.
   ============================================================ */

:root {
  /* Farben (→ Elementor Global Colors) */
  --c-gold:        #C99B37;   /* Primär – aus dem Logo */
  --c-gold-dark:   #AE852C;   /* Hover/aktiv */
  --c-gold-soft:   #F3EAD2;   /* sehr helles Gold für Icon-Hintergründe */
  --c-cream:       #FBF8F1;   /* warmes Off-White (Wechselsektionen) */
  --c-white:       #FFFFFF;
  --c-ink:         #23211C;   /* Text auf hell / Espresso-Fläche */
  --c-muted:       #6E695E;   /* Sekundärtext */
  --c-line:        #ECE6D8;   /* feine Linien/Borders */
  --c-whatsapp:    #1FA855;   /* WhatsApp-CTA */
  --c-whatsapp-dark:#178A45;

  /* Typografie (→ Elementor Global Fonts) */
  --font-heading: 'Outfit', 'Noto Naskh Arabic', sans-serif;
  --font-body:    'Source Sans 3', 'Noto Naskh Arabic', sans-serif;
  --fs-h1: clamp(2.1rem, 4.6vw, 3.4rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.25rem);
  --fs-h3: 1.25rem;
  --fs-lead: clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;

  /* Abstands-Skala (→ globale Abstände) */
  --sp-1: 8px;  --sp-2: 16px;  --sp-3: 24px;
  --sp-4: 40px; --sp-5: 64px;  --sp-6: 96px;
  --section-pad: clamp(64px, 9vw, 104px);
  --container: 1160px;

  /* Radius & Schatten */
  --r-card: 18px;
  --r-pill: 999px;
  --r-input: 12px;
  --shadow-card: 0 2px 6px rgba(35, 33, 28, 0.05), 0 14px 34px rgba(35, 33, 28, 0.07);
  --shadow-cta: 0 8px 22px rgba(31, 168, 85, 0.30);
}

/* ---------- Basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
  font-weight: 700;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
img { display: block; max-width: 100%; }
image-slot { height: auto; }
section { scroll-margin-top: 84px; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* Sektions-Kopf (wiederkehrendes Muster) */
.section-head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: var(--sp-5); }
.section-head .kicker {
  display: inline-block; font-family: var(--font-heading); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-gold-dark); margin-bottom: var(--sp-2);
}
.section-head h2 { font-size: var(--fs-h2); margin-bottom: var(--sp-2); }
.section-head .sub { color: var(--c-muted); font-size: var(--fs-lead); }

/* Buttons (wiederkehrendes Muster) */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  padding: 15px 28px; border-radius: var(--r-pill);
  text-decoration: none; border: 2px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }
.btn svg { flex: none; }
.btn-whatsapp { background: var(--c-whatsapp); color: var(--c-white); box-shadow: var(--shadow-cta); }
.btn-whatsapp:hover { background: var(--c-whatsapp-dark); }
.btn-gold { background: var(--c-gold); color: var(--c-white); }
.btn-gold:hover { background: var(--c-gold-dark); }
.btn-outline { border-color: var(--c-line); color: var(--c-ink); background: var(--c-white); }
.btn-outline:hover { border-color: var(--c-gold); color: var(--c-gold-dark); }

/* ============================================================
   MODUL 1 · HEADER (sticky)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.header-bar {
  display: flex; align-items: center; gap: var(--sp-3);
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 46px; height: 46px; border-radius: 50%; }
.brand .brand-name {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem;
  letter-spacing: 0.04em; line-height: 1.1;
}
.brand .brand-ku {
  display: block; font-family: 'Noto Naskh Arabic', serif;
  font-size: 0.8rem; color: var(--c-gold-dark); font-weight: 500;
}
.main-nav { display: flex; gap: clamp(16px, 2.4vw, 30px); margin-inline-start: auto; }
.main-nav a {
  text-decoration: none; font-weight: 600; font-size: var(--fs-small);
  color: var(--c-ink); padding: 8px 2px; border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--c-gold-dark); border-bottom-color: var(--c-gold); }
.header-actions { display: flex; align-items: center; gap: 12px; }

/* Sprachumschalter (nur UI, ohne Funktion) */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
  background: var(--c-cream); border: 1px solid var(--c-line);
  border-radius: var(--r-pill); padding: 8px 14px; cursor: pointer; color: var(--c-ink);
}
.lang-btn:hover { border-color: var(--c-gold); }
.lang-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px);
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: 12px;
  box-shadow: var(--shadow-card); padding: 6px; min-width: 150px; display: none;
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu button {
  display: flex; width: 100%; align-items: center; gap: 10px;
  background: none; border: 0; font: inherit; font-size: 0.9rem;
  padding: 8px 10px; border-radius: 8px; cursor: pointer; color: var(--c-muted);
}
.lang-menu button:hover { background: var(--c-cream); color: var(--c-ink); }
.lang-menu .code { font-weight: 700; color: var(--c-gold-dark); width: 24px; }

.header-phone {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
}
.header-phone:hover { color: var(--c-gold-dark); }
.btn-header-wa { padding: 10px 18px; font-size: 0.95rem; box-shadow: none; }

.burger {
  display: none; background: none; border: 1px solid var(--c-line);
  border-radius: 10px; width: 44px; height: 44px; cursor: pointer;
  align-items: center; justify-content: center; color: var(--c-ink);
}
.mobile-nav { display: none; }

/* ============================================================
   MODUL 2 · HERO
   ============================================================ */
.hero { background: var(--c-cream); border-bottom: 1px solid var(--c-line); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-5);
  align-items: center; padding-block: var(--section-pad);
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: var(--r-pill); padding: 8px 16px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem;
  color: var(--c-gold-dark); margin-bottom: var(--sp-3);
}
.hero h1 { font-size: var(--fs-h1); margin-bottom: var(--sp-3); }
.hero h1 .accent { color: var(--c-gold-dark); }
.hero .lead { font-size: var(--fs-lead); color: var(--c-muted); max-width: 34em; margin-bottom: var(--sp-4); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center;
  color: var(--c-muted); font-size: var(--fs-small);
}
.hero-trust .stars { color: var(--c-gold); letter-spacing: 2px; font-size: 1rem; }
.hero-media image-slot { width: 100%; aspect-ratio: 4 / 3.4; }

/* Hero-Variante "Gold" (Tweak) */
html[data-hero="Gold"] .hero { background: var(--c-gold); border-bottom: 0; }
html[data-hero="Gold"] .hero h1,
html[data-hero="Gold"] .hero .lead { color: var(--c-white); }
html[data-hero="Gold"] .hero h1 .accent { color: var(--c-white); }
html[data-hero="Gold"] .hero .eyebrow { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35); color: var(--c-white); }
html[data-hero="Gold"] .hero .lead { color: rgba(255,255,255,0.88); }
html[data-hero="Gold"] .hero-trust { color: rgba(255,255,255,0.85); }
html[data-hero="Gold"] .hero-trust .stars { color: var(--c-white); }
html[data-hero="Gold"] .btn-outline { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--c-white); }
html[data-hero="Gold"] .btn-outline:hover { border-color: var(--c-white); color: var(--c-white); }

/* ============================================================
   MODUL 3 · TRUST-/USP-LEISTE
   ============================================================ */
.usp-bar { background: var(--c-white); border-bottom: 1px solid var(--c-line); }
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3);
  padding-block: var(--sp-4);
}
.usp-item { display: flex; align-items: center; gap: 14px; }
.usp-item .usp-icon {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--c-gold-soft); color: var(--c-gold-dark);
  display: grid; place-items: center;
}
.usp-item strong { font-family: var(--font-heading); font-weight: 600; font-size: 0.98rem; display: block; }
.usp-item span { color: var(--c-muted); font-size: 0.85rem; }

/* ============================================================
   MODUL 4 · LEISTUNGEN (Repeater: service-card)
   ============================================================ */
.services { background: var(--c-cream); padding-block: var(--section-pad); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.service-card {
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: var(--r-card); padding: var(--sp-4) var(--sp-3) var(--sp-3);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: var(--sp-2);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--c-gold); }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--c-gold-soft); color: var(--c-gold-dark);
  display: grid; place-items: center;
}
.service-card h3 { font-size: var(--fs-h3); }
.service-card p { color: var(--c-muted); font-size: var(--fs-small); }

/* ============================================================
   MODUL 5 · REISEZIELE (Repeater: dest-tile)
   ============================================================ */
.destinations { background: var(--c-white); padding-block: var(--section-pad); }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.dest-tile {
  border-radius: var(--r-card); overflow: hidden; background: var(--c-cream);
  border: 1px solid var(--c-line); display: flex; flex-direction: column;
}
.dest-tile image-slot { width: 100%; aspect-ratio: 16 / 10; }
.dest-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-2) var(--sp-3);
}
.dest-meta h3 { font-size: 1.15rem; }
.dest-meta span { color: var(--c-muted); font-size: 0.85rem; }
.dest-more {
  align-items: center; justify-content: center; text-align: center;
  background: var(--c-gold); color: var(--c-white); gap: 10px; padding: var(--sp-3);
}
.dest-more h3 { font-size: 1.3rem; }
.dest-more p { color: rgba(255,255,255,0.9); font-size: var(--fs-small); }
.dest-more .btn { margin-top: var(--sp-1); background: var(--c-white); color: var(--c-gold-dark); padding: 11px 22px; font-size: 0.95rem; }

/* ============================================================
   MODUL 6 · ABLAUF (Repeater: step)
   ============================================================ */
.steps { background: var(--c-cream); padding-block: var(--section-pad); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.step {
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: var(--sp-4) var(--sp-3); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
}
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--c-gold); color: var(--c-white);
  font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem;
  display: grid; place-items: center;
}
.step h3 { font-size: var(--fs-h3); }
.step p { color: var(--c-muted); font-size: var(--fs-small); }

/* ============================================================
   MODUL 7 · ÜBER UNS
   ============================================================ */
.about { background: var(--c-white); padding-block: var(--section-pad); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: center; }
.about-media image-slot { width: 100%; aspect-ratio: 4 / 3; }
.about .kicker {
  display: inline-block; font-family: var(--font-heading); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-gold-dark); margin-bottom: var(--sp-2);
}
.about h2 { font-size: var(--fs-h2); margin-bottom: var(--sp-3); }
.about p { color: var(--c-muted); margin-bottom: var(--sp-2); }
.about-points { display: flex; flex-direction: column; gap: 12px; margin-top: var(--sp-3); padding: 0; list-style: none; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--c-ink); }
.about-points .check { color: var(--c-gold-dark); flex: none; margin-top: 3px; }

/* ============================================================
   MODUL 8 · BEWERTUNGEN (Repeater: testimonial-card)
   ============================================================ */
.testimonials { background: var(--c-cream); padding-block: var(--section-pad); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.testimonial-card {
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: var(--sp-3); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.testimonial-card .stars { color: var(--c-gold); letter-spacing: 3px; font-size: 1.05rem; }
.testimonial-card blockquote { margin: 0; font-size: var(--fs-body); color: var(--c-ink); }
.testimonial-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-card .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--c-gold-soft); color: var(--c-gold-dark);
  font-family: var(--font-heading); font-weight: 700;
  display: grid; place-items: center;
}
.testimonial-card .t-name { font-weight: 600; font-size: var(--fs-small); display: block; }
.testimonial-card .t-meta { color: var(--c-muted); font-size: 0.85rem; }

/* ============================================================
   MODUL 9 · KONTAKT
   ============================================================ */
.contact { background: var(--c-white); padding-block: var(--section-pad); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-4); align-items: start; }
.contact-form {
  background: var(--c-cream); border: 1px solid var(--c-line);
  border-radius: var(--r-card); padding: var(--sp-4) var(--sp-3);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: var(--fs-small); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--c-ink);
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: var(--r-input); padding: 12px 14px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--c-gold); outline-offset: 0; border-color: var(--c-gold);
}
.field textarea { resize: vertical; min-height: 110px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.875rem; color: var(--c-muted); }
.consent input { margin-top: 4px; accent-color: var(--c-gold); width: 17px; height: 17px; flex: none; }
.form-note { font-size: 0.85rem; color: var(--c-muted); }
.form-success {
  display: none; background: var(--c-gold-soft); color: var(--c-gold-dark);
  border-radius: var(--r-input); padding: 12px 16px; font-weight: 600;
}
.contact-form.sent .form-success { display: block; }

.contact-info { display: flex; flex-direction: column; gap: var(--sp-3); }
.info-card {
  border: 1px solid var(--c-line); border-radius: var(--r-card); padding: var(--sp-3);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.info-line { display: flex; gap: 14px; align-items: flex-start; }
.info-line .info-icon {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  background: var(--c-gold-soft); color: var(--c-gold-dark);
  display: grid; place-items: center;
}
.info-line strong { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; display: block; }
.info-line a { text-decoration: none; }
.info-line a:hover { color: var(--c-gold-dark); }
.info-line span, .info-line a { color: var(--c-muted); font-size: var(--fs-small); }
.map-placeholder image-slot { width: 100%; aspect-ratio: 16 / 9; }

/* ============================================================
   MODUL 10 · FOOTER
   ============================================================ */
.site-footer { background: var(--c-ink); color: rgba(255,255,255,0.8); }
html[data-footer="Gold"] .site-footer { background: var(--c-gold); color: rgba(255,255,255,0.92); }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: var(--sp-4);
  padding-block: var(--sp-5);
}
.footer-brand .brand-name {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem;
  color: var(--c-gold); letter-spacing: 0.05em;
}
html[data-footer="Gold"] .footer-brand .brand-name { color: var(--c-white); }
.footer-brand .brand-ku {
  font-family: 'Noto Naskh Arabic', serif; font-size: 1.05rem;
  color: rgba(255,255,255,0.75); display: block; margin-top: 2px;
}
.footer-brand p { margin-top: var(--sp-2); font-size: var(--fs-small); max-width: 30em; }
.footer-langs { margin-top: var(--sp-2); font-size: 0.85rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }
.site-footer h4 {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin: 0 0 var(--sp-2);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; font-size: var(--fs-small); }
.footer-col a:hover { color: var(--c-white); }
.footer-social { display: flex; gap: 12px; margin-top: var(--sp-2); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85);
}
.footer-social a:hover { border-color: var(--c-gold); color: var(--c-gold); }
html[data-footer="Gold"] .footer-social a:hover { border-color: var(--c-white); color: var(--c-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-block: var(--sp-3);
  display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; justify-content: space-between;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.footer-bottom .legal { display: flex; gap: var(--sp-3); }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--c-white); }

/* ---------- Schwebender WhatsApp-Button ---------- */
.wa-fab {
  position: fixed; inset-inline-end: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--c-whatsapp); color: var(--c-white);
  display: grid; place-items: center; text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: transform 0.18s ease, background 0.18s ease;
}
.wa-fab:hover { transform: scale(1.07); background: var(--c-whatsapp-dark); }

/* ============================================================
   RESPONSIVE (mobile-first Verhalten der Module)
   ============================================================ */
@media (max-width: 1020px) {
  .main-nav, .header-phone { display: none; }
  .burger { display: inline-flex; }
  .services-grid, .dest-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: var(--sp-4); }
  .steps-grid, .services-grid, .dest-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .btn-header-wa span { display: none; }
  .btn-header-wa { padding: 10px 12px; }
  .lang-btn { padding: 8px 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .hero-ctas .btn { width: 100%; }
}

/* Mobile-Navigation (Burger-Panel) */
.site-header.nav-open .mobile-nav {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--c-line);
  padding: var(--sp-2) clamp(20px, 4vw, 40px) var(--sp-3);
  background: var(--c-white);
}
.mobile-nav a {
  text-decoration: none; font-weight: 600; padding: 12px 4px;
  border-bottom: 1px solid var(--c-line); color: var(--c-ink);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav .mobile-phone { color: var(--c-gold-dark); }
