/* MYJET24 — minimal, luxury, black & gold theme */
:root {
  --bg: #0b0b0d;
  --panel: #121216;
  --muted: #A5A5A7;
  --text: #ECECEC;
  --gold: #d6b46b;
  --gold-strong: #f1cd7a;
  --border: #202028;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #1a1a1a;
  font-weight: 700;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 0.5px;
}
.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  opacity: .9;
}
.nav a:hover {
  color: var(--gold);
}
.nav .cta {
  padding: 8px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh; /* Vollbild */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: #000; /* Fallback */
  overflow: hidden;
}

/* Video im Hintergrund */
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7); /* leicht abdunkeln für Textlesbarkeit */
}

/* Overlay und Inhalt */
.hero .overlay,
.hero .hero-inner {
  position: relative;
  z-index: 1;
}

}

.hero::before,
.hero .overlay {
  display: none !important; /* alle Overlays deaktivieren */
  content: none !important;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.headline {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin: 0 0 22px;
  color: var(--gold);
}

.planner {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 14px;
  background: var(--panel);
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: saturate(120%) blur(6px);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 12px;
  opacity: .9;
}

input {
  background: #0e0e12;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 12px;
  border-radius: 10px;
  outline: none;
}
input::placeholder {
  color: #7d7d81;
}

.muted {
  color: var(--muted);
  font-weight: 400;
}

.btn {
  background: linear-gradient(180deg, var(--gold), var(--gold-strong));
  color: #1a1a1a;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn:hover {
  filter: brightness(1.05);
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn.small {
  padding: 8px 12px;
  font-size: .9rem;
}
.note {
  opacity: .7;
  margin-top: 12px;
  font-size: .9rem;
}

/* Services */
.section {
  padding: 72px 0;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--gold);
  margin: 0 0 12px;
}
.lead {
  opacity: .85;
  margin: 0 0 24px;
  max-width: 780px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--gold);
}

/* Programs */
.programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.program-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program-card h3 {
  margin: 0;
  color: var(--gold);
}

/* Why */
.why {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
}
.bullets {
  padding-left: 18px;
}

.why-visual {
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: url("https://media.istockphoto.com/id/1457441464/photo/luxury-private-jet.jpg?s=612x612&w=0&k=20&c=R-hqLQXNcMZUUqL9rwR3cadol5w_7oO27lUujn5FHxQ=")
    center center / cover no-repeat;
  filter: brightness(1) saturate(110%);
}

.cabinscape {
  width: 100%;
  height: 100%;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  margin-top: 20px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  opacity: .9;
}

/* Responsive */
@media (max-width: 980px) {
  .planner {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid, .programs, .why {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 80vh;
  }
}
@media (max-width: 540px) {
  .planner {
    grid-template-columns: 1fr;
  }
  .headline {
    font-size: 36px;
  }
  .nav a:not(.cta) {
    display: none;
  }
}
/* === Bombardier Global 8000 Section (Responsive) === */
.plane-section {
  background-color: #0b0b0b;
  border-radius: 14px;
  padding: 70px 60px;
  margin: 80px auto;
  max-width: 1300px;
  box-sizing: border-box;
}

.plane-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.plane-text {
  flex: 1 1 500px;
  max-width: 600px;
  color: #e5e5e5;
  line-height: 1.8;
  font-size: 1rem;
  padding: 20px 25px;
  box-sizing: border-box;
}

.plane-text h3 {
  font-family: "Playfair Display", serif;
  color: #d7b56d;
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.plane-text p.lead {
  margin-bottom: 25px;
}

.plane-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.plane-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.plane-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d7b56d;
}

.plane-text .btn {
  background-color: #d7b56d;
  color: #0b0b0b;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.plane-text .btn:hover {
  background-color: #c1a058;
  transform: translateY(-2px);
}

.plane-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plane-image img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.plane-image img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
  .plane-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .plane-text {
    padding: 10px 0;
    max-width: 90%;
    margin: 0 auto;
  }

  .plane-text h3 {
    font-size: 1.6rem;
  }

  .plane-image img {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .plane-section {
    padding: 45px 20px;
    margin: 50px auto;
  }

  .plane-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .plane-text h3 {
    font-size: 1.4rem;
  }

  .plane-image img {
    max-width: 100%;
    border-radius: 8px;
  }

  .plane-text .btn {
    width: 100%;
    text-align: center;
  }
}
.footer-legal {
  background-color: #0b0b0b;
  color: #d8d8d8;
  text-align: center;
  padding: 60px 30px;
  font-size: 0.9rem;
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal h3 {
  color: #d7b56d;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.footer-legal a {
  color: #d7b56d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #c19b55;
}

.footer-legal .disclaimer {
  opacity: 0.8;
  font-size: 0.85rem;
  margin-top: 25px;
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .overlay,
.hero .hero-inner {
  position: relative;
  z-index: 1;
}
