@charset "utf-8";
/* CSS Document */

/* ======================
   GRUNDDESIGN & VARIABLEN
   ====================== */
:root {
  --gold: #e0c07c;
  --black: #0a0a0a;
  --gray: #1e1e1e;
  --white: #f4f4f4;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
  --accent-glow: rgba(224, 192, 124, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}


/* ======================
   HEADER
   ====================== */
header {
  background: linear-gradient(120deg, #0f0f0f, #1a1a1a);
  color: var(--gold);
  text-align: center;
  padding: 40px 20px 30px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  animation: fadeInDown 1.5s ease-out;
  border-bottom: 1px solid var(--gold);
  box-shadow: 0 0 30px var(--accent-glow);
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 30px;
}

.logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ======================
   NAVIGATION
   ====================== */
nav {
  background-color: var(--gray);
  border-bottom: 1px solid #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

nav li {
  position: relative;
}

nav a {
  display: block;
  color: var(--gold);
  text-decoration: none;
  padding: 16px 24px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #2a2a2a;
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--gold);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a1a1a;
  min-width: 200px;
  border: 1px solid #333;
  z-index: 1000;
}

.dropdown-content a {
  padding: 12px 16px;
  display: block;
  color: var(--gold);
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* ======================
   MAIN / INHALT
   ====================== */
main {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  animation: fadeIn 1s ease-in-out;
}

.content.two-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.column {
  flex: 1;
  min-width: 300px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 0 0 6px var(--accent-glow);
  letter-spacing: 1.5px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--white);
}

strong {
  color: var(--gold);
}

ul.edu-list li {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}

.edu-list .year {
  font-size: 0.9rem;
  color: #bbb;
  margin-left: 10px;
}

/* ======================
   FOOTER
   ====================== */
footer {
  background-color: #0d0d0d;
  color: var(--gold);
  text-align: center;
  padding: 20px;
  border-top: 1px solid #222;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background-color: #111;
  color: var(--gold);
  font-family: var(--font-heading);
}

.footer-logo {
  width: 100px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

/* ======================
   ANIMATIONEN
   ====================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUpOnce {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-once {
  animation: fadeInUpOnce 1.8s ease-out forwards;
}

.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   GALERIE
   ====================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item video,
.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(224, 192, 124, 0.3);
  border: 3px solid transparent;
  background-image: linear-gradient(var(--black), var(--black)), linear-gradient(45deg, var(--gold), #fff);
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.02);
}

/* ======================
   BUTTONS
   ====================== */
.btn-lux {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-lux::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-lux:hover::before {
  left: 125%;
}

.btn-lux:hover {
  background: var(--gold);
  color: var(--black);
}

/* ======================
   PARALLAX & HERO VIDEO
   ====================== */
.parallax {
  background-image: url('Bilder/dji_fly_20230927_134846_190_1695820632293_photo.jpg');
  height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.6);
}

.hero-video {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  filter: brightness(0.5) contrast(1.2);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
}

.hero-overlay h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px var(--accent-glow);
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  header {
    font-size: 1.5rem;
    padding: 60px 15px;
  }

  .content.two-columns {
    flex-direction: column;
  }

  .btn-lux {
    padding: 11px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 60px 15px 40px;
    font-size: 1.3rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav li {
    width: 100%;
    text-align: center;
  }

  nav a {
    padding: 12px 0;
    font-size: 1rem;
  }

  .content.two-columns {
    flex-direction: column;
    gap: 20px;
  }

  .column {
    min-width: 100%;
  }

  .content img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  main {
    padding: 30px 15px;
  }

  footer {
    font-size: 0.8rem;
    padding: 15px;
  }

  .btn-lux {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 40px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }
}


/* === Language Switch Styling === */

.lang-switch {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 9999;
  display: flex;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: 0 0 8px rgba(224, 192, 124, 0.4);
  border: 1px solid var(--gold);
}

.lang-link {
  display: flex;
  align-items: center;
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.lang-link img {
  width: 20px;
  height: auto;
  margin-right: 5px;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.lang-link:hover {
  color: #fff;
}
.kalkulator-section {
      max-width: 800px;
      margin: auto;
      padding: 60px 20px;
    }

    .kalkulator-section label {
      display: block;
      margin: 10px 0;
      font-size: 1.1rem;
    }

    .kalkulator-section input[type="checkbox"],
    .kalkulator-section select {
      margin-right: 10px;
    }

    #priceDisplay {
      font-size: 1.5rem;
      color: var(--gold);
      margin-top: 30px;
      font-weight: bold;
    }
/* Abo Section Styles */
.abo-section {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

.abo-title {
  font-size: 2em;
  margin-bottom: 10px;
  color: #f0c75e;
}

.abo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.abo-card {
  background-color: #2a2a2a;
  border: 2px solid #444;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.5);
}

.price {
  font-size: 1.5em;
  margin: 15px 0;
  font-weight: bold;
  color: #f0c75e;
}

.abo-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  line-height: 1.6;
  color: #ccc;
}

.abo-list li::before {
  content: "✓";
  color: #f0c75e;
  margin-right: 8px;
}

.btn-abo {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #f0c75e;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.btn-abo:hover {
  background-color: #d4af37;
  color: #fff;
}
