/* ==========================================================
   Ferienwelt Weitblick – Reisebüro Hamburg
   Design: „Abendrot an der Alster" – tiefes Petrol, warmes
   Korallenrot, cremefarbener Grund. Serifen-Display (Fraunces)
   trifft klare Sans (Inter).
   ========================================================== */

:root {
  --petrol:        #0d2b33;
  --petrol-deep:   #081e24;
  --petrol-soft:   #14424e;
  --coral:         #e87a5d;
  --coral-deep:    #d2603f;
  --sand:          #f6efe4;
  --cream:         #fbf7ef;
  --ink:           #21323a;
  --ink-soft:      #5b6b72;
  --line:          rgba(13, 43, 51, .14);
  --radius:        18px;
  --shadow:        0 18px 45px -18px rgba(13, 43, 51, .28);
  --font-display:  'Fraunces', serif;
  --font-body:     'Inter', sans-serif;
}

* { 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.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--petrol);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); letter-spacing: -.01em; }
h3 { font-size: 1.25rem; }

.wrap { width: min(1120px, 90%); margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--coral-deep);
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px;
  background: var(--coral); border-radius: 2px;
}

.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--coral); color: #fff;
  box-shadow: 0 12px 28px -12px rgba(226, 108, 79, .7);
}
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-3px); }
.btn-ghost {
  background: transparent; color: var(--petrol);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--petrol); transform: translateY(-3px); }
.btn svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 239, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 0;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(140deg, var(--petrol), var(--petrol-soft));
  display: grid; place-items: center;
  color: var(--sand);
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  letter-spacing: .02em;
  box-shadow: var(--shadow);
}
.brand-text { line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--petrol);
  display: block;
}
.brand-text span { font-size: .72rem; color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 1.9rem; list-style: none;
}
.nav-links a {
  text-decoration: none; font-size: .95rem; font-weight: 500;
  color: var(--ink); position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 2px; background: var(--coral);
  border-radius: 2px; transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--petrol); font-weight: 600; }

.nav-cta { display: inline-flex; }

.burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.burger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--petrol); border-radius: 3px;
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 80% -10%, var(--petrol-soft) 0%, var(--petrol) 45%, var(--petrol-deep) 100%);
  color: var(--sand);
  padding: clamp(4.5rem, 10vw, 8rem) 0 0;
}
.hero h1 { color: var(--sand); }
.hero h1 em { font-style: italic; color: var(--coral); }
.hero .lead { color: rgba(246, 239, 228, .75); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 3rem; align-items: center;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero .btn-ghost { color: var(--sand); border-color: rgba(246,239,228,.3); }
.hero .btn-ghost:hover { border-color: var(--sand); }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 1.8rem;
  margin-top: 2.6rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(246,239,228,.16);
}
.hero-badge { display: flex; gap: .7rem; align-items: center; font-size: .9rem; color: rgba(246,239,228,.8); }
.hero-badge svg { width: 22px; height: 22px; color: var(--coral); flex-shrink: 0; }

/* Hero-Illustration: animierte SVG-Szene */
.hero-visual { position: relative; }
.hero-visual svg {
  width: 100%; height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
}

/* Animierter Himmel: rotierende Sonne + driftende Wolken + fliegendes Flugzeug */
@keyframes sunSpin { to { transform: rotate(360deg); } }
@keyframes cloudDrift {
  0%   { transform: translateX(-30px); opacity: .55; }
  50%  { transform: translateX(40px);  opacity: .9; }
  100% { transform: translateX(-30px); opacity: .55; }
}
@keyframes planeFly {
  0%   { transform: translate(-140px, 30px) rotate(-4deg); opacity: 0; }
  8%   { opacity: 1; }
  50%  { transform: translate(140px, -40px) rotate(-8deg); }
  92%  { opacity: 1; }
  100% { transform: translate(340px, -110px) rotate(-12deg); opacity: 0; }
}
@keyframes trailFade {
  0%, 100% { opacity: 0; }
  20%, 80% { opacity: .8; }
}
.sun-rays { transform-origin: center; animation: sunSpin 40s linear infinite; }
.cloud-a { animation: cloudDrift 14s ease-in-out infinite; }
.cloud-b { animation: cloudDrift 20s ease-in-out infinite reverse; }
.plane   { animation: planeFly 16s ease-in-out infinite; }
.plane-trail { animation: trailFade 16s ease-in-out infinite; }

/* Wellen-Abschluss unten */
.hero-waves { display: block; width: 100%; margin-bottom: -2px; }

/* ---------- Marquee-Band ---------- */
.marquee {
  background: var(--coral);
  color: #fff;
  overflow: hidden;
  padding: .85rem 0;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.marquee-track {
  display: flex; gap: 3.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem; font-style: italic; letter-spacing: .04em;
  white-space: nowrap;
}
.marquee-track span { display: flex; align-items: center; gap: 3.5rem; }
.marquee-track i { font-style: normal; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-alt { background: var(--sand); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { margin: .8rem 0 1rem; }

/* Karten-Raster */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--coral), transparent 70%);
  opacity: 0; transition: opacity .35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sand);
  display: grid; place-items: center;
  color: var(--coral-deep);
  margin-bottom: 1.3rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .95rem; color: var(--ink-soft); }

/* Destinations-Karten (CSS-Art, keine Bilder) */
.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.dest {
  border-radius: var(--radius);
  min-height: 300px;
  padding: 1.8rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
  position: relative; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.dest:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow); }
.dest::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,30,36,.75), rgba(8,30,36,0) 55%);
}
.dest > * { position: relative; z-index: 1; }
.dest h3 { color: #fff; font-size: 1.45rem; }
.dest p { font-size: .9rem; opacity: .85; }
.dest-tag {
  position: absolute; top: 1.2rem; left: 1.4rem; z-index: 1;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  padding: .3rem .8rem; border-radius: 999px;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
.dest-nordsee  { background: linear-gradient(160deg, #2f6d7e 0%, #173f4c 60%, #0d2b33 100%); }
.dest-mediterran{ background: linear-gradient(160deg, #e8a25d 0%, #d2603f 55%, #8a3a2a 100%); }
.dest-fern      { background: linear-gradient(160deg, #4a5fb0 0%, #31356e 55%, #1a1c3f 100%); }
.dest svg.dest-art { position: absolute; right: -20px; top: -20px; width: 160px; opacity: .5; z-index: 0; }

/* ---------- Bewertungen ---------- */
.reviews-note {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff8e6; color: #8a6d1a;
  border: 1px dashed #d8b84a;
  font-size: .8rem; font-weight: 600;
  padding: .4rem .9rem; border-radius: 999px;
  margin-bottom: 1.6rem;
}
.stars { color: var(--coral); font-size: 1.15rem; letter-spacing: .12em; }
.rating-summary {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  margin: 1rem 0 2.4rem;
}
.rating-number {
  font-family: var(--font-display); font-size: 3.4rem; font-weight: 700;
  color: var(--petrol); line-height: 1;
}
.rating-meta { color: var(--ink-soft); font-size: .95rem; }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem;
}
.review-card blockquote {
  font-size: .97rem; color: var(--ink); margin: .9rem 0 1.2rem;
}
.review-card figcaption { font-size: .85rem; color: var(--ink-soft); }
.review-card figcaption strong { color: var(--petrol); display: block; }

/* ---------- Über uns / Teaser ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.check-list { list-style: none; margin-top: 1.6rem; display: grid; gap: .9rem; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .98rem; }
.check-list svg { width: 20px; height: 20px; color: var(--coral-deep); flex-shrink: 0; margin-top: .2rem; }

.info-panel {
  background: var(--petrol);
  color: var(--sand);
  border-radius: calc(var(--radius) + 6px);
  padding: 2.6rem 2.4rem;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.info-panel::before {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,122,93,.28), transparent 65%);
  top: -120px; right: -100px;
}
.info-panel h3 { color: var(--sand); font-size: 1.5rem; margin-bottom: 1.4rem; }
.info-row {
  display: flex; gap: .9rem; padding: .8rem 0;
  border-bottom: 1px solid rgba(246,239,228,.14);
  font-size: .95rem; align-items: flex-start;
}
.info-row:last-child { border-bottom: none; }
.info-row svg { width: 20px; height: 20px; color: var(--coral); flex-shrink: 0; margin-top: .15rem; }
.info-row a { color: var(--sand); text-decoration: none; font-weight: 600; }
.info-row a:hover { color: var(--coral); }
.info-row small { display: block; color: rgba(246,239,228,.6); font-weight: 400; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--petrol) 0%, var(--petrol-soft) 100%);
  border-radius: calc(var(--radius) + 6px);
  color: var(--sand);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,122,93,.3), transparent 65%);
  bottom: -200px; left: -140px;
}
.cta-band h2 { color: var(--sand); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-band p { color: rgba(246,239,228,.75); max-width: 48ch; margin: 0 auto 2rem; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--petrol-deep);
  color: rgba(246,239,228,.75);
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(246,239,228,.12);
}
.site-footer h4 {
  font-family: var(--font-display); color: var(--sand);
  font-size: 1rem; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; display: grid; gap: .55rem; font-size: .92rem; }
.site-footer a { text-decoration: none; transition: color .2s ease; }
.site-footer a:hover { color: var(--coral); }
.footer-brand p { font-size: .92rem; max-width: 34ch; margin-top: .8rem; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.6rem; font-size: .82rem; color: rgba(246,239,228,.5);
}

/* ---------- Kontakt / Formular ---------- */
.form-grid { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
label { font-size: .85rem; font-weight: 600; color: var(--petrol); display: block; margin-bottom: .35rem; }
input, select, textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; font-size: .95rem; background: #fff; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(232,122,93,.15);
}
textarea { min-height: 130px; resize: vertical; }
.form-hint { font-size: .8rem; color: var(--ink-soft); }

/* ---------- Rechtstexte ---------- */
.legal { max-width: 760px; }
.legal h2 { margin: 2.2rem 0 .8rem; font-size: 1.5rem; }
.legal p, .legal li { font-size: .96rem; color: var(--ink-soft); }
.legal ul { padding-left: 1.3rem; display: grid; gap: .4rem; margin-top: .6rem; }
.placeholder { /* Felder sind gefuellt - keine Markierung mehr */ }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  background: radial-gradient(130% 150% at 85% -20%, var(--petrol-soft) 0%, var(--petrol) 50%, var(--petrol-deep) 100%);
  color: var(--sand);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative; overflow: hidden;
}
.page-hero h1 { color: var(--sand); font-size: clamp(2.1rem, 5vw, 3.4rem); margin: .7rem 0 1rem; }
.page-hero .lead { color: rgba(246,239,228,.75); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .cards, .dest-grid, .review-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed; inset: 65px 0 auto 0;
    background: var(--cream);
    flex-direction: column; align-items: flex-start;
    padding: 1.4rem 5% 1.8rem; gap: 1.2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .burger { display: flex; }
  .nav-cta { display: none; }
  .cards, .dest-grid, .review-cards, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 1rem; }
  .footer-bottom { flex-direction: column; }
}
