/* ============================================================
   BIJAGOS.DE – Haupt-Stylesheet
   Mobile-First, Custom Properties, kein Framework
   ============================================================ */

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%; /* 16px Basis für rem */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-primary); }

ul, ol { list-style: none; }

button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
}

button { cursor: pointer; }

table {
  border-collapse: collapse;
  width: 100%;
}

/* ============================================================
   2. DESIGN TOKENS (Custom Properties)
   ============================================================ */
:root {
  /* Farben – Palette „Sonnenuntergang Bijagós" */
  --color-primary:       #114B5F;
  --color-primary-dark:  #0C3744;
  --color-primary-light: #1C8FA8;
  --color-secondary:     #F4E4C1;
  --color-accent:        #E8763C;
  --color-accent-dark:   #CF6128;
  --color-gold:          #F2B44C;
  --color-text:          #233038;
  --color-text-light:    #5D6D7E;
  --color-text-inverted: #FFFFFF;
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F8F9FA;
  --color-border:        #DDE3E8;
  --color-success:       #27AE60;
  --color-error:         #E74C3C;

  /* Typografie */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.25rem;
  --text-hero: clamp(1.8rem, 5vw, 3.25rem);

  --line-height-tight: 1.25;
  --line-height-base:  1.6;
  --line-height-loose: 1.8;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold:   700;

  /* Spacing (8px-Grid) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 2rem);
  --border-radius:    0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;

  /* Schatten */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-Index */
  --z-nav:    100;
  --z-drawer: 200;
  --z-cookie: 300;
}

/* ============================================================
   3. SELF-HOSTED FONTS
   Dateien unter /assets/fonts/ ablegen.
   Download: https://fontsource.org/fonts/playfair-display
              https://fontsource.org/fonts/inter
   ============================================================ */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   4. TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-primary);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

strong { font-weight: var(--font-weight-bold); }

.text-light  { color: var(--color-text-light); }
.text-center { text-align: center; }
.text-white  { color: var(--color-text-inverted); }

/* ============================================================
   5. LAYOUT & CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--space-16);
}
.section--alt {
  background: var(--color-bg-alt);
}
.section--beige {
  background: var(--color-secondary);
}
.section--dark {
  background: var(--color-primary);
  color: var(--color-text-inverted);
}
.section--dark h2,
.section--dark h3 {
  color: var(--color-text-inverted);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 60ch;
  margin-inline: auto;
}

/* Grid-Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

/* ============================================================
   6. ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip-Link für Tastatur-Nutzer */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-accent);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-bold);
  z-index: 9999;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: var(--space-4); }

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-base);
  text-decoration: none;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* ============================================================
   8. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base);
}

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

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
}
.site-logo:hover { color: var(--color-secondary); }

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

/* Desktop-Navigation */
.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  padding-block: var(--space-1);
  position: relative;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-bold);
}
.nav-cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}
.nav-cta::after { display: none; }

/* Hamburger-Button (Mobile) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: calc(var(--z-drawer) + 1);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  pointer-events: none;
}
.nav-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(280px, 85vw);
  background: var(--color-primary-dark);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  padding: calc(64px + var(--space-6)) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  overflow-y: auto;
}

.nav-drawer.is-open { pointer-events: all; }
.nav-drawer.is-open .nav-drawer-overlay { opacity: 1; }
.nav-drawer.is-open .nav-drawer-panel { transform: translateX(0); }

.drawer-link {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: var(--text-lg);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition-fast);
}
.drawer-link:hover { color: #fff; }
.drawer-link.btn-primary {
  margin-top: var(--space-4);
  border-bottom: none;
  text-align: center;
  justify-content: center;
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,55,68,0.78) 0%,
    rgba(17,75,95,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-block: var(--space-16);
  max-width: 720px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.88);
  margin-bottom: 0;
  max-width: 55ch;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.6);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: bounce 2s infinite;
}
.hero-scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Hero-Variante: kompakter für Unterseiten */
.hero--compact {
  min-height: 40vh;
}
.hero--compact .hero-content {
  padding-block: var(--space-12);
}

/* ============================================================
   10. FEATURE CARDS (3-er Grid, Startseite)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.feature-card {
  background: var(--color-bg);
  border-radius: var(--border-radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-border);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: block;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
  color: inherit;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  display: block;
}

.feature-card h3 {
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--color-text-light);
  font-size: var(--text-base);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--color-primary-light);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  transition: gap var(--transition-fast);
}
.feature-link:hover { gap: var(--space-3); }
.feature-link::after { content: '→'; }

/* ============================================================
   11. TEXT-BILD-MODUL (alternierend)
   ============================================================ */
.text-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.text-image--reversed .text-image-media {
  order: -1;
}

.text-image-content { }

.text-image-content h2 {
  margin-bottom: var(--space-4);
}

.text-image-media {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.text-image-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.text-image-media:hover img {
  transform: scale(1.03);
}

/* ============================================================
   12. INSEL-KARTEN
   ============================================================ */
.island-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.island-card {
  background: var(--color-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.island-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.island-card-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--color-secondary);
}
.island-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.island-card:hover .island-card-image img {
  transform: scale(1.05);
}

/* Placeholder wenn kein Bild vorhanden */
.island-card-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.island-card-body {
  padding: var(--space-6);
}
.island-card-body h3 {
  margin-bottom: var(--space-2);
}
.island-badge {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.island-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-4);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}
.island-fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.island-fact strong {
  color: var(--color-text);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   13. VISUM-STEPS (Schritt-für-Schritt)
   ============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-8);
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary-light), var(--color-secondary));
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.step-content h3 {
  margin-bottom: var(--space-2);
  padding-top: var(--space-2);
}
.step-content p {
  color: var(--color-text-light);
}

/* ============================================================
   14. FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-bg);
  text-align: left;
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition-fast);
}
.faq-question:hover {
  background: var(--color-bg-alt);
}
.faq-item.is-open .faq-question {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary-light);
  transition: transform var(--transition-base);
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-answer-inner {
  padding: var(--space-4) var(--space-6) var(--space-6);
  color: var(--color-text-light);
  line-height: var(--line-height-loose);
}

/* ============================================================
   15. FAKTEN-BOX / TRUST-BADGES
   ============================================================ */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.fact-item {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: var(--color-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}
.fact-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  display: block;
}
.fact-label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-top: var(--space-1);
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}
.trust-badge-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-badge h4 { margin-bottom: var(--space-1); }
.trust-badge p  { font-size: var(--text-sm); color: var(--color-text-light); }

/* ============================================================
   16. PREIS-TABELLE
   ============================================================ */
.price-table {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}
.price-table th {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--color-bg-alt); }

/* Allgemeine Tabelle (Reisezeiten etc.) */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.data-table th {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  text-align: left;
}
.data-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--color-bg-alt); }
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   17. CTA-BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding-block: var(--space-16);
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: var(--space-4);
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-lg);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 0;
}
.cta-banner .btn-group {
  justify-content: center;
}

/* ============================================================
   18. KONTAKTFORMULAR
   ============================================================ */
.contact-form {
  background: var(--color-bg);
  border-radius: var(--border-radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  max-width: 640px;
  margin-inline: auto;
}

.form-group {
  margin-bottom: var(--space-6);
}
.form-group label {
  display: block;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}
.form-group label .required {
  color: var(--color-accent);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  font-family: var(--font-body);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(28,143,168,0.15);
}
.form-control.is-error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(231,76,60,0.12);
}
.form-control.is-success {
  border-color: var(--color-success);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235D6D7E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-error {
  color: var(--color-error);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
  display: none;
}
.form-error.is-visible { display: block; }

/* DSGVO-Checkbox */
.form-check {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-primary);
  margin-top: 2px;
}
.form-check label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--line-height-loose);
  cursor: pointer;
}
.form-check label a { color: var(--color-primary-light); }

/* Honeypot (Anti-Spam – muss unsichtbar bleiben) */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--border-radius);
  padding: var(--space-4) var(--space-6);
  margin-top: var(--space-4);
}
.form-success-message.is-visible { display: block; }

/* ============================================================
   19. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding-block: var(--space-12);
}

.footer-brand .site-logo {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  display: inline-flex;
}
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  max-width: 30ch;
}

.footer-col h4 {
  color: #fff;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
  font-weight: var(--font-weight-bold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: #fff; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}
.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.5); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}
.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: var(--text-xs);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: #fff; }

/* Cookie-Einstellungen-Button im Footer */
#cookie-settings-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color var(--transition-fast);
}
#cookie-settings-btn:hover { color: #fff; }

/* ============================================================
   20. COOKIE-CONSENT-BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background: var(--color-bg);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  border-top: 3px solid var(--color-accent);
}
#cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  padding: var(--space-4) var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: var(--container-max);
  margin-inline: auto;
}

.cookie-banner-text h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.cookie-banner-text p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}
.cookie-banner-text a { color: var(--color-primary-light); }

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}
.cookie-banner-actions .btn {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}
#cookie-settings-toggle {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: var(--text-sm);
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
  padding: 0.5rem 0;
}

.cookie-details {
  display: none;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border);
}
.cookie-details.is-open { display: block; }
.cookie-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}
.cookie-detail-item:last-child { border-bottom: none; }

/* Toggle-Switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.toggle-switch-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.toggle-switch input:checked + .toggle-switch-slider {
  background: var(--color-primary);
}
.toggle-switch input:checked + .toggle-switch-slider::before {
  transform: translateX(20px);
}
.toggle-switch input:disabled + .toggle-switch-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================================
   21. SCROLL-ANIMATIONEN (via JS IntersectionObserver)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 100ms; }
.fade-in-delay-2 { transition-delay: 200ms; }
.fade-in-delay-3 { transition-delay: 300ms; }
.fade-in-delay-4 { transition-delay: 400ms; }
.fade-in-delay-5 { transition-delay: 500ms; }

/* ============================================================
   21b. BILD-GALERIE (Impressionen / Startseite)
   ============================================================ */

/* UNESCO-Vertrauensband über der Galerie */
.gallery-trust {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: var(--space-6);
}
.gallery-trust span[aria-hidden] { font-size: 1.1rem; }

/* Galerie-Raster: 1 Spalte mobil, 2 ab Tablet, 3 ab Desktop */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-secondary);
  aspect-ratio: 4 / 3;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.gallery-item:hover,
.gallery-item:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Optional größere Kachel (für Akzent-Bild) */
.gallery-item--wide { grid-column: span 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.05);
}

/* Beschriftung + Bild-Credit (verlaufender Untergrund für Lesbarkeit) */
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-6) var(--space-4) var(--space-3);
  background: linear-gradient(to top, rgba(12,55,68,0.85) 0%, rgba(12,55,68,0) 100%);
  color: #fff;
}
.gallery-caption .gallery-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-base);
  line-height: var(--line-height-tight);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.gallery-caption .gallery-credit {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.78);
  margin-top: 2px;
}
.gallery-caption .gallery-credit a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gallery-caption .gallery-credit a:hover { color: #fff; }

/* Transparenz-Hinweis unter der Galerie */
.gallery-disclaimer {
  margin-top: var(--space-6);
  color: var(--color-text-light);
  font-style: italic;
}

/* ============================================================
   21c. SPRUNGNAVI · MERK-/ENTSCHEIDUNGS-BOXEN
   ============================================================ */

/* Sprungnavigation (Inhaltsanker, z. B. Reiseführer) */
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-8);
}
.jump-nav-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  align-self: center;
  margin-right: var(--space-2);
}
.jump-nav a {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.jump-nav a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Merk-/Checkliste „Vor der Reise klären" */
.checklist-box {
  background: var(--color-secondary);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.checklist-box h3 {
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.checklist li strong { color: var(--color-primary); }

/* Entscheidungshilfe „Welche Insel für wen" */
.decision-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.decision-box h3 { margin-bottom: var(--space-4); }
.decision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.decision-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
}
.decision-row .d-when { font-size: var(--text-sm); color: var(--color-text-light); }
.decision-row .d-pick {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}
.decision-row .d-pick::before { content: '→ '; color: var(--color-accent); }

/* ============================================================
   21d. UNTERKÜNFTE (Filter + Karten)
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.filter-chip {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.filter-chip:hover { border-color: var(--color-primary); }
.filter-chip.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.accom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.accom-card {
  background: var(--color-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.accom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.accom-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--color-secondary);
}
.accom-media img { width: 100%; height: 100%; object-fit: cover; }
.accom-media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.accom-b