/* =========================================================================
   ExclusivKreuzfahrten.de – Haupt-Stylesheet
   Design: Elegant Dunkelblau / Gold
   ========================================================================= */

/* ---------- Selbst gehostete Schriften (kein Google-Fonts-CDN) ----------
   Die eigentlichen Schriftdateien liegen NICHT in diesem Stylesheet, sondern
   müssen als .woff2-Dateien unter assets/fonts/ abgelegt werden. Siehe
   assets/fonts/README-Fonts.md für die genaue Anleitung zum Download der
   passenden Dateien (Inter 400/500/600/700, Playfair Display 700). */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-700.woff2') format('woff2');
}

:root {
  --navy-950: #060f1e;
  --navy-900: #0a1a2f;
  --navy-800: #0f2540;
  --navy-700: #16345a;
  --navy-600: #1e4573;
  --gold-600: #a9821c;
  --gold-500: #c9a227;
  --gold-400: #d9bb55;
  --gold-300: #e8d38f;
  --cream-100: #f9f6ef;
  --cream-200: #f2ecdc;
  --white: #ffffff;
  --ink-900: #12202e;
  --ink-700: #35485a;
  --ink-500: #5a6d7d;
  --success: #2e7d5b;
  --shadow-soft: 0 10px 30px rgba(6, 15, 30, 0.15);
  --shadow-strong: 0 20px 50px rgba(6, 15, 30, 0.35);
  --radius-md: 10px;
  --radius-lg: 18px;
  --max-width: 1200px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--cream-100);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1.1em; color: var(--ink-700); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 700;
  margin-bottom: 0.9em;
}

.section {
  padding: 76px 0;
}
.section--tight { padding: 48px 0; }
.section--navy {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--cream-200);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #c7d3df; }
.section--cream { background: var(--cream-200); }
.section--white { background: var(--white); }

.text-center { text-align: center; }
.max-w-content { max-width: 760px; margin: 0 auto; }

/* ---------- Buttons / CTAs ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: var(--shadow-soft);
}
.btn-gold:hover { box-shadow: var(--shadow-strong); }
.btn-outline {
  background: transparent;
  border-color: var(--gold-400);
  color: var(--gold-300);
}
.btn-outline:hover { background: rgba(217, 187, 85, 0.12); }
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ---------- Header / Navigation ---------- */
.top-bar {
  background: var(--navy-950);
  color: #b9c6d3;
  font-size: 0.8rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--gold-300); }

.site-header {
  background: rgba(10, 26, 47, 0.97);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 18px rgba(0,0,0,0.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.logo span { color: var(--gold-400); }
.logo small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: #90a3b6;
  font-weight: 500;
  text-transform: uppercase;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #dfe7ef;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold-400);
  border-bottom-color: var(--gold-400);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}
.header-cta { display: flex; align-items: center; gap: 16px; }

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    padding: 10px 24px 24px;
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: block; }
  .header-cta .btn-sm { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,15,30,0.55) 0%, rgba(6,15,30,0.78) 55%, rgba(6,15,30,0.96) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 90px;
  max-width: 780px;
}
.hero-content h1 { color: var(--white); }
.hero-content p.lead {
  font-size: 1.15rem;
  color: #dbe4ec;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #b9c6d3;
}
.trust-row strong { color: var(--gold-300); display: block; font-size: 1.3rem; font-family: var(--font-serif); }

.hero--sub { min-height: 360px; display: flex; align-items: center; }
.hero--sub .hero-content { padding: 70px 0; }

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.card img { height: 190px; object-fit: cover; width: 100%; }
.card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { margin-bottom: 0.3em; }
.card-tag {
  align-self: flex-start;
  background: var(--cream-200);
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.card-meta {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--ink-500);
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--cream-200);
}

/* theme category cards */
.theme-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-soft);
  color: var(--white);
}
.theme-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.theme-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,47,0.05) 20%, rgba(10,26,47,0.92) 100%);
}
.theme-card-body { position: relative; z-index: 2; padding: 26px; }
.theme-card-body .eyebrow { color: var(--gold-300); }
.theme-card-body h3 { color: var(--white); margin-bottom: 8px; }
.theme-card-body p { color: #dbe4ec; font-size: 0.92rem; margin-bottom: 14px; }

/* ---------- USP / Icon list ---------- */
.usp-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .usp-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .usp-list { grid-template-columns: 1fr; } }
.usp-item { text-align: center; padding: 18px; }
.usp-icon {
  width: 58px; height: 58px; margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--navy-950);
  box-shadow: var(--shadow-soft);
}
.usp-item h3 { font-size: 1.05rem; }
.usp-item p { font-size: 0.9rem; }

/* ---------- Affiliate / Ad placeholder blocks ---------- */
.affiliate-box {
  border: 2px dashed var(--gold-500);
  background: repeating-linear-gradient(135deg, rgba(201,162,39,0.06), rgba(201,162,39,0.06) 10px, rgba(201,162,39,0.11) 10px, rgba(201,162,39,0.11) 20px);
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 30px 0;
  position: relative;
}
.affiliate-box::before {
  content: "WERBUNG · PLATZHALTER";
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--navy-900);
  color: var(--gold-300);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.affiliate-box h4 { margin: 6px 0 6px; font-size: 1rem; color: var(--navy-800); }
.affiliate-box p { font-size: 0.86rem; margin-bottom: 12px; }
.affiliate-box .btn { font-size: 0.85rem; padding: 10px 20px; }

.banner-slot {
  border: 2px dashed #9aa9b8;
  background: #eef1f4;
  color: var(--ink-500);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 34px auto;
}
.banner-slot span { padding: 0 10px; }
.banner-728 { max-width: 728px; height: 90px; }
.banner-300 { max-width: 300px; height: 250px; }
.banner-leader { max-width: 970px; height: 120px; }
.banner-inline { width: 100%; height: 110px; }

.deeplink-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border-radius: 6px;
  background: rgba(201,162,39,0.14);
  border-bottom: 1px dashed var(--gold-600);
  color: var(--navy-800);
  font-weight: 700;
}
.deeplink-inline::after { content: "🔗"; font-size: 0.75em; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.testimonial p.quote { font-style: italic; color: var(--ink-900); font-size: 1.02rem; }
.testimonial .who { font-weight: 700; color: var(--navy-800); font-size: 0.88rem; }
.stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 10px; }

/* ---------- Newsletter ---------- */
.newsletter-box {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  border-radius: var(--radius-lg);
  padding: 46px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.newsletter-box h3 { color: var(--white); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 13px 18px;
  border-radius: 999px;
  border: none;
  min-width: 260px;
  font-size: 0.95rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--ink-500);
  padding: 16px 0;
}
.breadcrumb a { color: var(--navy-700); font-weight: 600; }
.breadcrumb span { margin: 0 6px; }

/* ---------- Article ---------- */
.article-header { padding: 60px 0 20px; }
.article-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  color: var(--ink-500); font-size: 0.85rem; margin-bottom: 20px;
}
.article-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin: 20px 0 10px; box-shadow: var(--shadow-soft); }
.article-hero-img img { width: 100%; height: 420px; object-fit: cover; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin-top: 1.4em; }
.article-body h3 { margin-top: 1.1em; }
.article-body blockquote {
  border-left: 4px solid var(--gold-500);
  margin: 24px 0;
  padding: 4px 22px;
  font-style: italic;
  color: var(--navy-800);
  font-size: 1.05rem;
}
.article-body figure { margin: 26px 0; }
.article-body figure img { border-radius: var(--radius-md); }
.article-body figcaption { font-size: 0.8rem; color: var(--ink-500); margin-top: 8px; text-align: center; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0; }
.tag-pill {
  background: var(--cream-200);
  color: var(--navy-700);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.author-box {
  display: flex; gap: 16px; align-items: center;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 40px 0;
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--cream-200);
  padding: 18px 0;
}
.faq-item h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--navy-800); }
.faq-item p { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: #9fb0c0;
  padding: 60px 0 26px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold-300); }
.footer-brands { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.footer-brands a {
  border: 1px solid #2a3c50;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
}
.footer-bottom {
  border-top: 1px solid #202f3f;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}
.footer-bottom a { margin-left: 16px; }
.footer-disclosure {
  background: #0d1c30;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.78rem;
  color: #8a9bab;
  margin-bottom: 30px;
}

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--cream-200); margin: 40px 0; }
.skip-link {
  position: absolute; left: -999px; top: auto;
}
.skip-link:focus { left: 10px; top: 10px; background: var(--white); color: var(--navy-900); padding: 10px; z-index: 999; }

table.compare { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.92rem; }
table.compare th, table.compare td { border: 1px solid var(--cream-200); padding: 10px 14px; text-align: left; }
table.compare th { background: var(--navy-900); color: var(--white); }
table.compare tr:nth-child(even) { background: var(--cream-200); }

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--gold-500);
  color: var(--navy-950);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  font-size: 1.2rem;
  z-index: 90;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
