/* ============================================================
   FLUGWELT.EU – Zentrales Stylesheet
   Primärfarbe: #33a6e6 – alle Blautöne nur Abstufungen davon
   ============================================================ */

/* ── FF Dax – lokal eingebunden ── */
@font-face {
  font-family: 'FF Dax';
  src: url('../fonts/FFDax-Regular.woff2') format('woff2');
  font-weight: 100 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FF Dax';
  src: url('../fonts/FFDax-Bold.woff2') format('woff2');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

/* ── Design-Tokens ── */
:root {
  /* Blau-Palette – alle Abstufungen von #33a6e6 */
  --blue-deep:    #094e72;   /* Dunkelst – Nav-BG, Footer */
  --blue-dark:    #0f6fa0;   /* Dunkel */
  --blue-primary: #33a6e6;   /* Hauptfarbe */
  --blue-mid:     #1b8fcd;   /* Etwas dunkler */
  --blue-bright:  #5bbcec;   /* Heller – Links/Hover */
  --blue-sky:     #85cef2;   /* Sehr hell – Akzente */
  --blue-light:   #e8f5fc;   /* Hintergrund-Tönung */

  /* Akzent */
  --orange:       #e8751a;
  --orange-light: #f59e42;

  /* Neutral */
  --white:      #ffffff;
  --off-white:  #f4f8fb;
  --gray-light: #ddeaf4;
  --gray-mid:   #6a8fa8;
  --gray-dark:  #2a4a5e;
  --text-dark:  #0d2535;
  --text-body:  #254355;

  /* Typografie */
  --font-display: 'FF Dax', sans-serif;   /* Bold für Logo & Hero-Titel */
  --font-heading: 'FF Dax', sans-serif;   /* Bold für alle Überschriften */
  --font-body:    'FF Dax', sans-serif;   /* Regular für Fließtext */

  /* Spacing & Layout */
  --section-gap: 5rem;
  --container:   1280px;
  --radius:      6px;
  --radius-lg:   14px;

  /* Schatten */
  --shadow-sm: 0 2px 8px rgba(9,78,114,.10);
  --shadow-md: 0 6px 24px rgba(9,78,114,.16);
  --shadow-lg: 0 16px 48px rgba(9,78,114,.22);

  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-weight: 400; letter-spacing: .01em; line-height: 1.65; color: var(--text-body); background: var(--white); overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typografie ── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; color: var(--blue-deep); line-height: 1.15; letter-spacing: .02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  letter-spacing: .04em; transition: all var(--transition);
  text-decoration: none; white-space: nowrap; cursor: pointer; border: none;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 14px rgba(232,117,26,.35); }
.btn-primary:hover { background: var(--orange-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,117,26,.45); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn-secondary:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--blue-deep); border: 2px solid var(--blue-primary); }
.btn-outline:hover { background: var(--blue-primary); color: var(--white); border-color: var(--blue-primary); }
/* Cookie-Banner: "Nur notwendige" braucht hellen Text auf dunklem Hintergrund */
.cookie-btn-deny { color: var(--white) !important; border-color: rgba(255,255,255,.55) !important; }
.cookie-btn-deny:hover { background: rgba(255,255,255,.15) !important; color: var(--white) !important; border-color: var(--white) !important; }
.btn-sm { padding: .5rem 1.2rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ── Navigation ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.25rem 0;
}
.navbar.scrolled { background: var(--blue-deep); box-shadow: var(--shadow-md); padding: .75rem 0; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: .08em; line-height: 1; }
.nav-logo-text span { color: var(--blue-sky); }
.nav-logo-sub { font-family: var(--font-body); font-size: .6rem; color: rgba(255,255,255,.65); letter-spacing: .18em; text-transform: uppercase; display: block; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }

/* WICHTIG: Hover-Bridge – verhindert, dass Dropdown verschwindet */
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0; right: 0;
  height: 12px; /* unsichtbare Brücke zum Dropdown */
}

.nav-link {
  display: block; padding: .5rem .85rem;
  font-family: var(--font-heading); font-weight: 500; font-size: .9rem;
  letter-spacing: .05em; color: rgba(255,255,255,.9);
  transition: color var(--transition); text-transform: uppercase;
}
.nav-link:hover, .nav-link.active { color: var(--blue-sky); }

/* Dropdown – mit Verzögerung durch transition-delay */
.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 230px;
  background: var(--blue-deep);
  border-top: 3px solid var(--blue-primary);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
  z-index: 100;
  transition: opacity .2s ease, visibility .2s ease;
  /* Verzögerung beim Ausblenden: 200ms – genug Zeit um die Maus rüberzubewegen */
  transition-delay: 0s, 0s;
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transition-delay: 0s;
}
/* Beim Verlassen: 250ms Verzögerung */
.nav-item:not(:hover) .dropdown-menu {
  transition-delay: 250ms;
}

.dropdown-menu a {
  display: block; padding: .55rem 1.25rem;
  font-family: var(--font-body); font-size: .9rem;
  color: rgba(255,255,255,.82); transition: all var(--transition);
}
.dropdown-menu a:hover { background: rgba(255,255,255,.08); color: var(--blue-sky); padding-left: 1.5rem; }

.nav-cta { margin-left: .75rem; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; cursor: pointer; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--blue-deep); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(9,78,114,.78) 0%, rgba(9,78,114,.45) 50%, rgba(51,166,230,.25) 100%); }
.hero-content { position: relative; z-index: 2; padding: 8rem 0 5rem; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-heading); font-size: .85rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-sky); margin-bottom: 1rem; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--blue-primary); }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem); color: var(--white); line-height: 1; letter-spacing: .03em; margin-bottom: 1.25rem; text-shadow: 0 4px 24px rgba(0,0,0,.4); }
.hero-title span { color: var(--blue-sky); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.85); font-weight: 300; max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.12); background: rgba(9,78,114,.6); backdrop-filter: blur(8px); }
.hero-stat { flex: 1; padding: 1.25rem 1rem; border-right: 1px solid rgba(255,255,255,.1); text-align: center; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--white); line-height: 1; letter-spacing: .03em; }
.hero-stat-label { font-size: .72rem; color: rgba(255,255,255,.6); letter-spacing: .12em; text-transform: uppercase; margin-top: .25rem; }

.slider-dots { position: absolute; bottom: 5.5rem; right: 2rem; z-index: 3; display: flex; flex-direction: column; gap: .5rem; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: all var(--transition); }
.slider-dot.active { background: var(--blue-primary); transform: scale(1.3); }

/* ── Sections ── */
section { padding: var(--section-gap) 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-heading); font-size: .8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: .75rem; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; display: block; width: 24px; height: 2px; background: var(--blue-primary); }
.section-title { color: var(--blue-deep); margin-bottom: .75rem; }
.section-subtitle { color: var(--gray-mid); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Cards ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; }
.card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); border: 1px solid var(--gray-light); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-light); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.5rem; }
.card-eyebrow { font-family: var(--font-heading); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: .4rem; }
.card-title { font-size: 1.25rem; margin-bottom: .6rem; color: var(--blue-deep); }
.card-text { font-size: .92rem; color: var(--gray-dark); margin-bottom: 1.25rem; line-height: 1.6; }

/* ── Highlight-Band ── */
.highlight-band { background: var(--blue-deep); padding: 4rem 0; position: relative; overflow: hidden; }
.highlight-band::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(51,166,230,.2) 0%, transparent 70%); pointer-events: none; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; }
.team-card { text-align: center; padding: 1.5rem 1rem; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-light); transition: all var(--transition); }
.team-card:hover { border-color: var(--blue-primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto .85rem; border: 3px solid var(--blue-light); background: var(--off-white); transition: border-color var(--transition); }
.team-card:hover .team-avatar { border-color: var(--blue-primary); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-heading); font-size: 1rem; color: var(--blue-deep); font-weight: 700; margin-bottom: .3rem; }
.team-role { font-size: .78rem; color: var(--gray-mid); line-height: 1.4; }

/* ── Flotte ── */
.aircraft-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.aircraft-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--off-white); border: 1px solid var(--gray-light); transition: all var(--transition); }
.aircraft-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.aircraft-img { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-light); }
.aircraft-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.aircraft-card:hover .aircraft-img img { transform: scale(1.05); }
.aircraft-info { padding: 1.1rem; }
.aircraft-reg { font-family: var(--font-heading); font-size: .72rem; letter-spacing: .15em; color: var(--blue-primary); text-transform: uppercase; margin-bottom: .3rem; }
.aircraft-model { font-family: var(--font-heading); font-size: 1.05rem; color: var(--blue-deep); font-weight: 700; }
.aircraft-type { font-size: .82rem; color: var(--gray-mid); margin-top: .2rem; }

/* ── Flugplätze ── */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.location-card { padding: 1.5rem; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-light); border-left: 4px solid var(--blue-mid); transition: all var(--transition); }
.location-card:hover { border-left-color: var(--blue-primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.location-card.homebase { border-left-color: var(--orange); }
.location-badge { display: inline-block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; background: var(--orange); color: var(--white); padding: .12rem .55rem; border-radius: 100px; margin-bottom: .6rem; font-weight: 700; }
.location-name { font-family: var(--font-heading); font-size: 1.05rem; color: var(--blue-deep); font-weight: 700; margin-bottom: .4rem; }
.location-desc { font-size: .85rem; color: var(--gray-dark); line-height: 1.55; }

/* ── News ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; }
.news-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--gray-light); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-light); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 1.25rem; }
.news-date { font-size: .75rem; color: var(--gray-mid); letter-spacing: .08em; margin-bottom: .5rem; }
.news-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--blue-deep); font-weight: 700; margin-bottom: .5rem; line-height: 1.3; }
.news-excerpt { font-size: .85rem; color: var(--gray-dark); }

/* ── Events ── */
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-item { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.1rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-light); transition: all var(--transition); }
.event-item:hover { border-color: var(--blue-sky); box-shadow: var(--shadow-sm); }
.event-date-box { flex-shrink: 0; width: 52px; text-align: center; background: var(--blue-deep); color: var(--white); border-radius: var(--radius); padding: .4rem .2rem; }
.event-day { font-family: var(--font-display); font-size: 1.4rem; line-height: 1; }
.event-month { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }
.event-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--blue-deep); }
.event-desc { font-size: .82rem; color: var(--gray-mid); margin-top: .2rem; }

/* ── Kontakt ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-family: var(--font-heading); font-size: .82rem; font-weight: 700; letter-spacing: .06em; color: var(--blue-deep); margin-bottom: .4rem; text-transform: uppercase; }
.form-control { display: block; width: 100%; padding: .75rem 1rem; font-family: var(--font-body); font-size: .95rem; color: var(--text-dark); background: var(--white); border: 1.5px solid var(--gray-light); border-radius: var(--radius); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-control:focus { border-color: var(--blue-primary); box-shadow: 0 0 0 3px rgba(51,166,230,.15); }
textarea.form-control { resize: vertical; min-height: 140px; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; padding: 1.1rem; border-radius: var(--radius); background: var(--blue-light); margin-bottom: .85rem; }
.contact-info-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-primary); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.05rem; }

/* ── Alert ── */
.alert { padding: .875rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .92rem; }
.alert-success { background: #d4f4e7; color: #0d6b3e; border: 1px solid #a8dfc3; }
.alert-danger  { background: #fde8e8; color: #8b1a1a; border: 1px solid #f5c6cb; }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .83rem; color: rgba(255,255,255,.6); padding: .75rem 0; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--blue-sky); }
.breadcrumb-sep { opacity: .4; font-size: .7rem; }
.breadcrumb-current { color: var(--white); font-weight: 600; }

/* ── Page-Hero (Unterseiten) ── */
.page-hero { padding: 7.5rem 0 3.5rem; background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 60%, var(--blue-mid) 100%); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -40%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(51,166,230,.18) 0%, transparent 65%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-primary), var(--blue-sky), var(--orange)); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 5rem); color: var(--white); letter-spacing: .05em; }
.page-hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.72); margin-top: .6rem; max-width: 600px; }

/* ── Zitat ── */
.quote-band { background: var(--blue-light); padding: 3.5rem 0; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.quote-text { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.5vw, 1.75rem); color: var(--blue-deep); font-style: italic; text-align: center; max-width: 800px; margin: 0 auto; font-weight: 500; line-height: 1.5; }
.quote-text::before { content: '„'; color: var(--blue-primary); }
.quote-text::after  { content: '"'; color: var(--blue-primary); }

/* ── Footer ── */
.footer { background: var(--blue-deep); color: rgba(255,255,255,.72); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand-logo { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-brand-text { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .65rem; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center; transition: all var(--transition); font-size: .9rem; }
.social-btn:hover { background: var(--blue-primary); color: var(--white); transform: translateY(-2px); }
.footer-heading { font-family: var(--font-heading); font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--white); font-weight: 700; margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--blue-sky); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .7rem; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: .65rem; }
.footer-contact-icon { font-size: .88rem; margin-top: .18rem; color: var(--blue-primary); flex-shrink: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; font-size: .78rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: .75rem; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: rgba(255,255,255,.3); font-size: .78rem; }
.footer-bottom-links a:hover { color: var(--blue-sky); }

/* ── Cookie-Banner ── */
.cookie-banner { position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%); width: min(660px, calc(100% - 2rem)); background: var(--blue-deep); color: var(--white); border-radius: var(--radius-lg); padding: 1.25rem 1.75rem; box-shadow: var(--shadow-lg); z-index: 9999; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; border: 1px solid rgba(255,255,255,.1); }
.cookie-banner.hidden { display: none; }
.cookie-text { font-size: .85rem; line-height: 1.5; color: rgba(255,255,255,.82); flex: 1; min-width: 200px; }
.cookie-text a { color: var(--blue-sky); }
.cookie-actions { display: flex; gap: .65rem; flex-shrink: 0; }

/* ── Social Feed Block ── */
.social-consent-box { background: var(--blue-light); border: 2px dashed var(--blue-sky); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; }
.social-consent-box i { font-size: 2.5rem; color: var(--blue-primary); margin-bottom: 1rem; display: block; }
.social-feed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.social-post-placeholder { background: var(--off-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-light); }

/* ── Download-Portal ── */
.download-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.download-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-light); transition: all var(--transition); }
.download-card:hover { border-color: var(--blue-primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.download-icon { width: 48px; height: 48px; border-radius: var(--radius); background: var(--blue-light); color: var(--blue-primary); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.download-info { flex: 1; min-width: 0; }
.download-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--blue-deep); margin-bottom: .2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.download-meta { font-size: .75rem; color: var(--gray-mid); }
.download-btn { display: inline-flex; align-items: center; gap: .35rem; padding: .45rem 1rem; background: var(--blue-primary); color: var(--white); border-radius: var(--radius); font-family: var(--font-heading); font-size: .82rem; font-weight: 700; transition: background var(--transition); white-space: nowrap; flex-shrink: 0; }
.download-btn:hover { background: var(--blue-mid); color: var(--white); }

/* ── Inline-Edit-Bar (Frontend-Editing) ── */
.fw-edit-bar { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 8000; display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; }
.fw-edit-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem; background: var(--blue-deep); color: var(--white); border-radius: 100px; font-family: var(--font-heading); font-size: .82rem; font-weight: 700; letter-spacing: .04em; box-shadow: var(--shadow-md); transition: all var(--transition); text-decoration: none; cursor: pointer; border: none; }
.fw-edit-btn:hover { background: var(--blue-primary); color: var(--white); transform: translateY(-2px); }
.fw-edit-btn.primary { background: var(--orange); font-size: .9rem; padding: .65rem 1.3rem; }
.fw-edit-btn.primary:hover { background: var(--orange-light); color: var(--white); }

/* ── CMS-Content (TinyMCE-Ausgabe im Frontend) ── */
.cms-content { line-height: 1.75; color: var(--text-body); }
.cms-content p  { margin-bottom: 1rem; }
.cms-content p:last-child { margin-bottom: 0; }
.cms-content h2 { font-size: clamp(1.4rem,2.5vw,2rem); margin: 1.75rem 0 .75rem; }
.cms-content h3 { font-size: clamp(1.1rem,2vw,1.4rem); margin: 1.5rem 0 .6rem; }
.cms-content a  { color: var(--blue-primary); text-decoration: underline; }
.cms-content a:hover { color: var(--orange); }
.cms-content strong { font-weight: 700; color: var(--blue-deep); }
/* Standard-Listen wiederherstellen */
.cms-content ul,
.cms-content ol { margin: .5rem 0 1rem; padding-left: 1.5rem; }
.cms-content ul { list-style: disc; }
.cms-content ol { list-style: decimal; }
.cms-content li { margin-bottom: .35rem; }
/* ── Custom-Listen ── */
/* Blaues Häkchen */
.cms-content ul.fw-list-check,
ul.fw-list-check { list-style: none; padding-left: 0; margin: .5rem 0 1rem; }
.cms-content ul.fw-list-check li,
ul.fw-list-check li { padding-left: 1.6rem; position: relative; margin-bottom: .45rem; }
.cms-content ul.fw-list-check li::before,
ul.fw-list-check li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: .1em; color: var(--blue-primary); font-size: .9em; }
/* Grünes Häkchen */
.cms-content ul.fw-list-check-green,
ul.fw-list-check-green { list-style: none; padding-left: 0; margin: .5rem 0 1rem; }
.cms-content ul.fw-list-check-green li,
ul.fw-list-check-green li { padding-left: 1.6rem; position: relative; margin-bottom: .45rem; }
.cms-content ul.fw-list-check-green li::before,
ul.fw-list-check-green li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: .1em; color: #22c55e; font-size: .9em; }
/* Oranges Häkchen */
.cms-content ul.fw-list-check-orange,
ul.fw-list-check-orange { list-style: none; padding-left: 0; margin: .5rem 0 1rem; }
.cms-content ul.fw-list-check-orange li,
ul.fw-list-check-orange li { padding-left: 1.6rem; position: relative; margin-bottom: .45rem; }
.cms-content ul.fw-list-check-orange li::before,
ul.fw-list-check-orange li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: .1em; color: var(--orange); font-size: .9em; }
/* Pfeil-Liste */
.cms-content ul.fw-list-arrow,
ul.fw-list-arrow { list-style: none; padding-left: 0; margin: .5rem 0 1rem; }
.cms-content ul.fw-list-arrow li,
ul.fw-list-arrow li { padding-left: 1.6rem; position: relative; margin-bottom: .45rem; }
.cms-content ul.fw-list-arrow li::before,
ul.fw-list-arrow li::before { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: .15em; color: var(--blue-primary); font-size: .75em; }
/* Tabelle */
.cms-content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .93rem; }
.cms-content thead tr { background: var(--blue-deep); color: var(--white); }
.cms-content th { padding: .65rem 1rem; text-align: left; font-family: var(--font-heading); }
.cms-content td { padding: .6rem 1rem; border: 1px solid var(--gray-light); }
.cms-content tr:nth-child(even) td { background: var(--off-white); }
/* Info-Box */
.cms-content .info-box,
.info-box { background: var(--blue-light); border-left: 4px solid var(--blue-primary);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; margin: 1.25rem 0; }

/* ── Utilities ── */
.bg-dark  { background: var(--blue-deep); color: var(--white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-light { background: var(--off-white); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.text-muted { color: var(--gray-mid); }

/* ── Animationen ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-up  { animation: fadeInUp .7s ease both; }
.animate-fade-in  { animation: fadeIn .6s ease both; }

[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"]  { transform: translateX(-24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(24px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-in"] { transform: none; }

/* ════════════════════════════════════════
   RESPONSIVE – Mobile First
   ════════════════════════════════════════ */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Tablet ── */
@media (max-width: 900px) {
  :root { --section-gap: 3.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { display: none; }
  .highlight-band .container > div { grid-template-columns: 1fr !important; gap: 2rem !important; }
  section .container > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 2rem !important; }
  section .container > div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  :root { --section-gap: 3rem; }

  /* Navigation mobil */
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh; overflow-y: auto;
    background: var(--blue-deep);
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    z-index: 999;
    align-items: flex-start;
  }
  .nav-menu.open { display: flex; }

  .nav-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-item::after { display: none; }

  .nav-link { font-size: 1.2rem; padding: .85rem 0; width: 100%; }

  /* Dropdown mobil: immer sichtbar, eingerückt */
  .dropdown-menu {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 .5rem 1rem;
    display: none;
  }
  .nav-item.mob-open .dropdown-menu { display: block; }
  .dropdown-menu a { font-size: .95rem; padding: .4rem 0; color: rgba(255,255,255,.65); }
  .dropdown-menu a:hover { padding-left: .5rem; background: transparent; color: var(--blue-sky); }

  .nav-cta { margin: 1rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  /* Hero */
  .hero-content { padding: 6.5rem 0 3.5rem; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .slider-dots { display: none; }

  /* Sections */
  section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 2rem; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
  .aircraft-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .locations-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }

  /* Inline-2-Spalter → 1-Spalter */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { display: flex !important; flex-direction: column !important; gap: 1.5rem !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Highlight-Band */
  .highlight-band { padding: 2.5rem 0; }
}

/* ── Inline-Edit-Bar Abstand ── */
body.has-edit-bar { padding-bottom: 5rem; }

/* ── CMS-Content (TinyMCE Ausgabe) ── */
.cms-section { padding: 3rem 0; }
.cms-content {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
}
.cms-content h1,
.cms-content h2,
.cms-content h3,
.cms-content h4 {
  color: var(--blue-deep);
  margin-top: 2rem;
  margin-bottom: .75rem;
  line-height: 1.25;
}
.cms-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cms-content h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
.cms-content p   { margin-bottom: 1rem; }
.cms-content ul,
.cms-content ol  { padding-left: 1.5rem; margin-bottom: 1rem; }
.cms-content li  { margin-bottom: .35rem; }
.cms-content a   { color: var(--blue-primary); text-decoration: underline; }
.cms-content a:hover { color: var(--orange); }
.cms-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.25rem 0;
}
.cms-content blockquote {
  border-left: 4px solid var(--blue-primary);
  padding: .75rem 1.25rem;
  background: var(--blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  color: var(--blue-deep);
  font-style: italic;
}
.cms-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .95rem;
}
.cms-content th,
.cms-content td {
  padding: .6rem 1rem;
  border: 1px solid var(--gray-light);
  text-align: left;
}
.cms-content th {
  background: var(--blue-deep);
  color: var(--white);
  font-family: var(--font-heading);
}
.cms-content tr:nth-child(even) { background: var(--off-white); }

/* ── Zweispaltige Layouts (section-fields) ────────────────── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Button-Reihe */
.fw-btn-row {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* Checkmark-Liste */
.fw-check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.fw-check-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--gray-dark);
}
.fw-check-list li .fa-check { color: var(--blue-primary); flex-shrink: 0; }

/* Feature-Liste */
.fw-feature-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.25rem 0; }
.fw-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}
.fw-feature-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue-primary);
}

/* Preisboxen */
.fw-price-boxes {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.fw-price-box { text-align: center; }
.fw-price-dur { font-family: var(--font-display); font-size: 1.8rem; color: var(--blue-primary); line-height: 1; }
.fw-price-amt { font-size: .8rem; color: var(--gray-mid); margin-top: .2rem; }

/* Card Icon */
.fw-card-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue-primary);
  font-size: 1.2rem;
}

/* Preistabelle */
.fw-price-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.fw-price-table thead tr { background: var(--blue-deep); color: var(--white); }
.fw-price-table th { padding: .75rem 1rem; text-align: left; font-family: var(--font-heading); }
.fw-price-table td { padding: .65rem 1rem; border: 1px solid #dde; color: var(--gray-dark); }
.fw-price-table tr.fw-even td { background: var(--white); }
.fw-price-table tr.fw-odd  td { background: var(--off-white); }

/* ── Downloads ──────────────────────────────────────────── */
.download-list { display: flex; flex-direction: column; border: 1px solid var(--gray-light); border-radius: var(--radius-lg); overflow: hidden; }
.download-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  transition: background .12s;
}
.download-row:last-child { border-bottom: none; }
.download-row:hover { background: var(--off-white); }
.download-row__icon { font-size: 1.4rem; text-align: center; flex-shrink: 0; }
.download-row__info { min-width: 0; }
.download-row__title {
  font-weight: 600;
  color: var(--blue-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .95rem;
}
.download-row__meta { font-size: .78rem; color: var(--gray-mid); margin-top: .15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.download-row__size { font-size: .8rem; color: var(--gray-mid); white-space: nowrap; flex-shrink: 0; }
.download-row__btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem;
  background: var(--blue-deep); color: var(--white);
  border-radius: var(--radius); font-size: .82rem; font-weight: 600;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background .15s;
}
.download-row__btn:hover { background: var(--blue-primary); color: var(--white); }
@media (max-width: 640px) {
  .download-row { grid-template-columns: 2rem 1fr auto; gap: .6rem; padding: .75rem 1rem; }
  .download-row__size { display: none; }
}

/* last rule – keep at bottom */
@media (max-width: 900px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 2rem; }
  .two-col-grid--flip .two-col-visual { order: -1; }
}
@media (max-width: 480px) {
  .aircraft-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .page-hero { padding: 6rem 0 2.5rem; }
}

/* ── section-fields.php Hilfsklassen (fw-*) ─────────────────── */
.fw-btn-row {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.fw-check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.fw-check-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--gray-dark);
}
.fw-check-list li .fa-check { color: var(--blue-primary); flex-shrink: 0; }
.fw-feature-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.25rem 0; }
.fw-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}
.fw-feature-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue-primary);
}
.fw-price-boxes {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.fw-price-box { text-align: center; }
.fw-price-dur { font-family: var(--font-display); font-size: 1.8rem; color: var(--blue-primary); line-height: 1; }
.fw-price-amt { font-size: .8rem; color: var(--gray-mid); margin-top: .2rem; }
.fw-card-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue-primary);
  font-size: 1.2rem;
}
.fw-price-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.fw-price-table thead tr { background: var(--blue-deep); color: var(--white); }
.fw-price-table th { padding: .75rem 1rem; text-align: left; font-family: var(--font-heading); }
.fw-price-table td { padding: .65rem 1rem; border: 1px solid #dde; color: var(--gray-dark); }
.fw-price-table tr.fw-even td { background: var(--white); }
.fw-price-table tr.fw-odd  td { background: var(--off-white); }
