/* ================================================================
   Direktflug.info – main.css v1.0.0
   Farben: #0A2540 (Navy) · #1565C0 (Blue) · #00B67A (Green)
   Fonts:  Poppins (Headlines) · Inter (Body)
   ================================================================ */

/* ── Variablen ─────────────────────────────────────────────── */
:root {
  --navy:      #0A2540;
  --blue:      #1565C0;
  --green:     #00B67A;
  --green-d:   #009960;
  --gray-bg:   #F4F7FA;
  --gray-mid:  #E8EEF5;
  --gray-text: #64748B;
  --dark-text: #1A2332;
  --white:     #FFFFFF;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h:     68px;
  --radius:    12px;
  --shadow:    0 2px 16px rgba(10,37,64,.08);
  --shadow-md: 0 8px 32px rgba(10,37,64,.12);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark-text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
/* ── Autocomplete & Date Dropdowns (global) ────────────────── */
.df-ac-drop, .df-date-drop {
  display: none;
  position: fixed;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(10,37,64,.22);
  z-index: 99999;
  max-height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-width: 220px;
}
.df-ac-drop.open, .df-date-drop.open {
  display: block;
}


.df-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: 0 1px 12px rgba(10,37,64,.06);
  height: var(--nav-h);
  display: flex; align-items: center;
}
.df-nav-inner {
  max-width: 1280px; width: 100%; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 32px;
}
/* Logo */
.df-logo {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0; text-decoration: none;
}
.df-logo-icon {
  width: 32px; height: 32px;
  background: var(--blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.df-logo-text {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: var(--navy); letter-spacing: -.01em;
}
.df-logo-text span { color: var(--blue); }
/* Menu */
.df-menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.df-menu li a {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  color: var(--dark-text); padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.df-menu li a:hover, .df-menu li a.active {
  background: var(--gray-bg); color: var(--blue);
}
/* Nav Actions */
.df-nav-actions {
  margin-left: auto; display: flex; align-items: center; gap: 10px;
}
.df-nav-icon {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--gray-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-text); cursor: pointer;
  transition: background .2s;
}
.df-nav-icon:hover { background: var(--gray-bg); }
.df-btn-newsletter {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: var(--white);
  padding: 9px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  font-family: var(--font-body);
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.df-btn-newsletter:hover { background: var(--green-d); transform: translateY(-1px); }
/* Burger */
.df-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.df-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
}

/* ── HERO — vollbreite, Suchformular innen ──────────────────── */
.df-hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: visible;
}
/* Hintergrundbild vollbreite */
.df-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.df-hero-bgimg {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.df-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,37,64,.88) 0%,
    rgba(10,37,64,.72) 45%,
    rgba(10,37,64,.35) 100%
  );
}
/* Wrapper über dem Bild */
.df-hero-content-wrap {
  position: relative; z-index: 2;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 0;
  flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.df-hero-content-wrap .df-wrap {
  display: flex; flex-direction: column;
}
/* Text */
.df-hero-text {
  padding-bottom: 36px;
  max-width: 640px;
}
.df-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-size: 12px; font-weight: 500;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
  font-family: var(--font-body); letter-spacing: .04em;
}
.df-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; color: var(--white);
  line-height: 1.08; margin-bottom: 16px;
  letter-spacing: -.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.df-hero-sub {
  font-size: 17px; color: rgba(255,255,255,.72);
  line-height: 1.65; font-weight: 400;
}



/* ── SUCHLEISTE (charterfluege.net Stil) ─────────────────── */
#df-search {
  position: relative; z-index: 10;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 32px 0;
}
.df-search-bar {
  display: flex; align-items: center;
  background: #fff; border-radius: 8px; overflow: visible;
  box-shadow: 0 6px 32px rgba(10,37,64,.28); height: 58px;
}
.df-sf {
  display: flex; align-items: center; gap: 7px;
  padding: 0 12px; border-right: 1px solid #e0e7ef;
  height: 100%; flex: 1; min-width: 0; overflow: visible;
}
.df-sf:last-of-type { border-right: none; }
.df-sf-icon { color: var(--blue); flex-shrink: 0; line-height: 0; }
.df-sf-inner {
  display: flex; flex-direction: column;
  justify-content: center; flex: 1; overflow: hidden;
}
.df-sf-label {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #999; margin-bottom: 2px; white-space: nowrap;
}
.df-sf-inner select,
.df-sf-inner input[type="date"] {
  border: none; outline: none; padding: 0;
  background: transparent;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 600; color: var(--dark-text);
  -webkit-appearance: none; appearance: none;
  cursor: pointer; width: 100%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.df-sf-inner input[type="date"] { font-size: 12px; }
.df-search-cta {
  background: var(--green); color: #fff; border: none;
  height: 100%; padding: 0 24px; flex-shrink: 0;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: .05em; cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  text-transform: uppercase; border-radius: 0 8px 8px 0;
  transition: background .2s;
}
.df-search-cta:hover { background: var(--green-d); }

/* ── TRUST BAR ──────────────────────────────────────────────── */
.df-trust {
  position: relative;
  z-index: 5;
  background: var(--navy);
  padding: 20px 0;
}
.df-trust-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.df-trust-item {
  display: flex; align-items: center; gap: 14px;
}
.df-trust-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.df-trust-icon svg { color: var(--white); }
.df-trust-title {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600; color: var(--white);
  margin-bottom: 1px;
}
.df-trust-sub { font-size: 12px; color: rgba(255,255,255,.55); }

/* ── WRAP ──────────────────────────────────────────────────── */
.df-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ── SECTION HEADERS ─────────────────────────────────────────── */
.df-section { padding: 64px 0; }
.df-section--gray { background: var(--gray-bg); }
.df-section-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 32px; gap: 16px; flex-wrap: wrap;
}
.df-section-head-left h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700; color: var(--navy);
  letter-spacing: -.02em; margin-bottom: 4px;
}
.df-section-head-left p {
  font-size: 14px; color: var(--gray-text);
}
.df-btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 8px;
  border: 1px solid var(--gray-mid);
  font-size: 13px; font-weight: 500;
  color: var(--dark-text); white-space: nowrap;
  transition: border-color .2s, background .2s;
  font-family: var(--font-body);
}
.df-btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ── DESTINATION CARDS ──────────────────────────────────────── */
.df-dest-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.df-dest-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: block; text-decoration: none;
}
.df-dest-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
}
.df-dest-card-img { height: 200px; overflow: hidden; }
.df-dest-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.df-dest-card:hover .df-dest-card-img img { transform: scale(1.07); }
.df-dest-card-body { padding: 16px 18px 20px; }
.df-dest-country {
  font-size: 12px; color: var(--gray-text);
  font-weight: 500; margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: .04em;
}
.df-dest-city {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.df-dest-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.df-dest-price {
  font-size: 14px; font-weight: 600; color: var(--green);
}
.df-dest-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 13px;
  transition: background .2s, color .2s;
}
.df-dest-card:hover .df-dest-arrow {
  background: var(--green); color: var(--white);
}

/* ── DEALS BANNER ────────────────────────────────────────────── */
.df-deals-banner {
  background: linear-gradient(135deg,#e8f8f2 0%,#d4f5e9 100%);
  border: 1px solid rgba(0,182,122,.2);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex; align-items: center; gap: 20px;
  margin: 0 0 64px;
}
.df-deals-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.df-deals-text { flex: 1; }
.df-deals-text h3 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 3px;
}
.df-deals-text p { font-size: 13px; color: var(--gray-text); }
.df-btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 11px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  white-space: nowrap; border: none; cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s, transform .15s;
}
.df-btn-green:hover { background: var(--green-d); transform: translateY(-1px); }

/* ── BLOG CARDS ──────────────────────────────────────────────── */
.df-blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.df-blog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: block; text-decoration: none;
}
.df-blog-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.df-blog-card-img { height: 200px; overflow: hidden; }
.df-blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.df-blog-card:hover .df-blog-card-img img { transform: scale(1.06); }
.df-blog-card-body { padding: 18px 20px 22px; }
.df-blog-badge {
  display: inline-block;
  background: var(--gray-bg); color: var(--gray-text);
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: .04em;
}
.df-blog-title {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700; color: var(--navy);
  line-height: 1.4; margin-bottom: 8px;
}
.df-blog-excerpt {
  font-size: 13px; color: var(--gray-text); line-height: 1.65;
  margin-bottom: 14px;
}
.df-blog-meta { font-size: 12px; color: #AAB4BE; display: flex; gap: 8px; }

/* ── PARTNER LOGOS ───────────────────────────────────────────── */
.df-partners { padding: 40px 0; background: var(--white); }
.df-partners-label {
  text-align: center; font-size: 12px; font-weight: 600;
  color: var(--gray-text); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 24px;
}
.df-partners-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.df-partner {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: #CBD5E1; letter-spacing: -.01em;
  display: flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.df-partner:hover { color: #94A3B8; }
.df-partner svg { opacity: .5; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.df-footer { background: var(--navy); padding: 64px 0 0; }
.df-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.df-fc h4 {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600; color: var(--white);
  margin-bottom: 16px; letter-spacing: .01em;
}
.df-fc p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }
.df-fc ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.df-fc ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.df-fc ul li a:hover { color: var(--white); }
.df-footer-logo {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px; text-decoration: none;
}
.df-footer-logo-icon {
  width: 28px; height: 28px; background: var(--blue); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.df-footer-logo-text {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--white);
}
.df-footer-logo-text span { color: var(--blue); }
.df-social { display: flex; gap: 10px; margin-top: 20px; }
.df-social a {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 13px;
  transition: background .2s, color .2s;
}
.df-social a:hover { background: var(--blue); color: var(--white); }
/* Newsletter Input */
.df-newsletter-form {
  display: flex; flex-direction: column; gap: 8px; margin-top: 12px;
}
.df-newsletter-input {
  height: 42px; padding: 0 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; color: var(--white);
  font-size: 13px; font-family: var(--font-body); outline: none;
  transition: border-color .2s;
}
.df-newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.df-newsletter-input:focus { border-color: var(--green); }
.df-newsletter-btn {
  height: 42px; background: var(--green); color: var(--white);
  border: none; border-radius: 8px; cursor: pointer;
  font-size: 13px; font-weight: 600; font-family: var(--font-body);
  transition: background .2s;
}
.df-newsletter-btn:hover { background: var(--green-d); }
.df-footer-bottom {
  padding: 20px 32px; display: flex;
  align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 8px;
}
.df-footer-bottom a { color: rgba(255,255,255,.3); transition: color .2s; }
.df-footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── SEO TEXT BLOCK ──────────────────────────────────────────── */
.df-seo-block {
  background: var(--gray-bg); padding: 56px 0;
  border-top: 1px solid var(--gray-mid);
}
.df-seo-block h2 {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700; color: var(--navy);
  margin-bottom: 14px;
}
.df-seo-block p {
  font-size: 15px; color: var(--gray-text); line-height: 1.8;
  max-width: 860px; margin-bottom: 12px;
}
.df-seo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 32px; }
.df-seo-cols h3 {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.df-seo-cols ul {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
}
.df-seo-cols ul li {
  font-size: 14px; color: var(--gray-text);
  display: flex; align-items: flex-start; gap: 8px;
}
.df-seo-cols ul li::before {
  content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0;
}

/* ── FAQ BLOCK ───────────────────────────────────────────────── */
.df-faq { padding: 56px 0; }
.df-faq h2 {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 700; color: var(--navy);
  margin-bottom: 32px;
}
.df-faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.df-faq-item {
  background: var(--white); border: 1px solid var(--gray-mid);
  border-radius: 10px; padding: 20px 24px;
}
.df-faq-item h3 {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px;
}
.df-faq-item p { font-size: 14px; color: var(--gray-text); line-height: 1.7; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  
  .df-search-fields 
  .df-dest-grid { grid-template-columns: 1fr 1fr; }
  .df-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .df-trust-inner { grid-template-columns: 1fr 1fr; }
  .df-seo-cols { grid-template-columns: 1fr; gap: 24px; }
  .df-hero { min-height: 85vh; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .df-menu { display: none; }
  .df-menu.open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--white); padding: 16px;
    box-shadow: 0 8px 24px rgba(10,37,64,.12);
    z-index: 998;
  }
  .df-burger { display: flex; }
  .df-nav-actions .df-nav-icon { display: none; }
  .df-blog-grid { grid-template-columns: 1fr; }
  .df-dest-grid { grid-template-columns: 1fr; }
  .df-trust-inner { grid-template-columns: 1fr; }
  .df-deals-banner { flex-direction: column; text-align: center; }
  .df-footer-grid { grid-template-columns: 1fr; }
  .df-partners-logos { gap: 24px; }
  .df-section { padding: 44px 0; }
  .df-hero { min-height: 90svh; }
  .df-hero-text { padding-bottom: 28px; }
  .df-hero-h1 { font-size: clamp(32px,8vw,48px); }
  .df-hero-sub { font-size: 15px; }
}
@media (max-width: 480px) {
  .df-wrap { padding: 0 16px; }
  
  
  .df-footer-bottom { flex-direction: column; text-align: center; }
  .df-hero-content-wrap { padding-top: calc(var(--nav-h) + 40px); }
}
