/* ==========================================================================
   1. GLOBAL STYLES & THEME
   ========================================================================== */
body {
  margin: 0;
  padding: 0;
  background: #0d0d0d;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  color: #fff;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  pointer-events: none;
}

/* Fix für das Dropdown-Menü (Formular Auswahlboxen) */
select[name="format"] option, select[name="subject"] option {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}

select[name="format"], select[name="subject"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://w3.org' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px !important;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 42px;
  opacity: 0.95;
}

.nav a {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s, text-shadow 0.3s;
}

.nav a:hover, .nav a.active {
  opacity: 1;
  color: #fff;
  text-shadow: 0 0 6px rgba(255,255,255,0.6), 0 0 12px rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
}

.mobile-nav {
  display: none;
}

/* ==========================================================================
   3. HERO SEKTION
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 95px;
  padding-bottom: 95px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease-in-out;
  opacity: 0;
  z-index: 0;
}

.hero-bg.bg1 {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
}

.hero-left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.hero-left h1 {
  font-size: 2.7rem;
  margin: 0.4rem 0 1rem 0;
  line-height: 1.2;
}

.hero-subtitle {
  opacity: 0.85;
  max-width: 480px;
  font-size: 1.05rem;
}

.hero-buttons {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  box-shadow: 0 0 10px rgba(255,255,255,0.35), 0 0 18px rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.btn.primary {
  background: #fff;
  color: #000;
}

.btn.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #000;
}

.hero-video {
  flex: 1;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transform: translateX(80px);
  margin-left: 120px;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   4. SEKTIONEN & DESKTOP GRID SYSTEM
   ========================================================================== */
.section {
  padding: 20px 0;
}

.section-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.eyebrow.center {
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin: 0.5rem 0 1rem 0;
}

.section-subtitle {
  opacity: 0.8;
  max-width: 600px;
}

.section-cta {
  margin-top: 1.5rem;
}

/* Automatisches, responsives 3er-Grid für den Desktop */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

/* ==========================================================================
   5. KARTEN & PREMIUMEFFEKTE
   ========================================================================== */
.card-bg {
  height: 180px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-bg:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.85));
}

.card-content {
  position: absolute;
  bottom: 14px;
  left: 14px;
}

.card-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.card-content p {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ==========================================================================
   6. CONTACT & WORK WITH US FORMULAR STYLES
   ========================================================================== */
.contact-hero {
  padding-top: 140px;
  padding-bottom: 20px;
  text-align: center;
}

.contact-hero h2 {
  font-size: 2.4rem;
  margin: 0;
}

.contact-hero .contact-info {
  margin-top: 12px;
  font-size: 1.1rem;
  opacity: 0.85;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 0.7fr 2fr 0.7fr;
  gap: 30px;
  align-items: stretch;
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-box {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.contact-banner:first-child .banner-box {
  background: url('../images/bannercapa.jpg') center/cover no-repeat;
}

.contact-banner:last-child .banner-box {
  background: url('../images/bannerdubai.jpg') center/cover no-repeat;
}

.banner-box::before {
  content: "Werbung";
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 15px;
  opacity: 0.85;
  color: #fff;
}

.contact-center .contact-box {
  min-height: 420px;
  background: rgba(255,255,255,0.03);
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-box {
  animation: contactFadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes contactFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form label {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 22px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  background: rgba(255,255,255,0.10);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 12px rgba(255,255,255,0.35), 0 0 22px rgba(255,255,255,0.25);
  border-color: #fff;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
}

.contact-buttons button {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.send-btn {
  background: #fff;
  color: #000;
}

.send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 14px rgba(255,255,255,0.55), 0 0 26px rgba(255,255,255,0.35);
}

.reset-btn {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.reset-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 14px rgba(255,255,255,0.35), 0 0 26px rgba(255,255,255,0.25);
}

.contact-success {
  margin-top: 20px;
  padding: 14px;
  background: rgba(0,255,120,0.15);
  border-left: 4px solid #00ff88;
  border-radius: 8px;
  color: #00ff88;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.4s ease;
}

.contact-error {
  margin-top: 20px;
  padding: 14px;
  background: rgba(255,0,0,0.15);
  border-left: 4px solid #ff4444;
  border-radius: 8px;
  color: #ff4444;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.robot-check {

display: none !important;}/* ==========================================================================7. FOOTER & LANGUAGE SWITCHER========================================================================== */.footer {background: #000;padding: 40px 0 30px 0;border-top: 1px solid rgba(255,255,255,0.08);}.footer-inner {max-width: 1400px;margin: auto;padding: 0 2rem;}.footer-top {display: flex;justify-content: space-between;align-items: flex-start;gap: 2rem;flex-wrap: wrap;}.footer-brand {display: flex;align-items: center;gap: 1rem;}.footer-brand img {height: 55px;opacity: 0.95;}.footer-tagline {font-size: 1.1rem;font-weight: 600;margin: 0;}.footer-desc {opacity: 0.7;font-size: 0.9rem;margin: 0.2rem 0 0 0;}.footer-social-group {display: flex;flex-direction: column;gap: 1.5rem;align-items: flex-end;}.footer-social {display: flex;gap: 1.4rem;align-items: center;}.footer-social .social-icon {display: flex;align-items: center;justify-content: center;width: 42px;height: 42px;border-radius: 50%;background: rgba(255,255,255,0.08);transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;box-shadow: 0 0 12px rgba(255,255,255,0.15);}.footer-social .social-icon:hover {background: rgba(255,255,255,0.18);transform: translateY(-3px);box-shadow: 0 0 18px rgba(255,255,255,0.35), 0 0 28px rgba(255,255,255,0.25);}.footer-social .icon {width: 22px;height: 22px;fill: #fff;opacity: 0.9;transition: opacity 0.3s ease;}.footer-social .social-icon:hover .icon {opacity: 1;}.footer-bottom {margin-top: 25px;display: flex;justify-content: center;gap: 28px;font-size: 0.95rem;}.footer-bottom a {opacity: 0.85;display: inline-block;transition: opacity 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;}.footer-bottom a:hover {opacity: 1;text-shadow: 0 0 6px rgba(255,255,255,0.6), 0 0 12px rgba(255,255,255,0.4);transform: translateY(-2px);}.lang-switcher {display: flex;gap: 12px;margin-top: 10px;}.lang-btn {background: #111;color: #fff;border: 1px solid #333;padding: 8px 14px;border-radius: 8px;cursor: pointer;font-size: 14px;transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;display: flex;align-items: center;gap: 6px;}.lang-btn:hover {background: #222;border-color: #555;transform: translateY(-2px);box-shadow: 0 0 10px rgba(255,255,255,0.15);}.lang-btn.active {background: #fff;color: #000;border-color: #fff;font-weight: 600;box-shadow: 0 0 12px rgba(255,255,255,0.4);}/* ==========================================================================8. LAUFBAND, SLIDER & LIGHTBOX SYSTEM========================================================================== */.laufband {overflow-x: auto;white-space: nowrap;padding: 10px 0;-webkit-overflow-scrolling: touch;}.laufband-track {display: flex;gap: 12px;}.laufband-track img {flex: 0 0 auto;width: 220px;height: 150px;object-fit: cover;border-radius: 8px;transition: transform 0.2s ease;}.laufband-track img:hover {transform: scale(1.05);}.slider-img {height: 220px;width: auto;flex: 0 0 auto;border-radius: 12px;object-fit: cover;cursor: pointer;transition: transform 0.2s ease, opacity 0.2s ease;}.slider-img:hover {transform: scale(1.03);opacity: 0.9;}.lightbox a.close, .lightbox a.next, .lightbox a.prev {position: absolute;font-size: 2rem;color: #fff;text-decoration: none;transition: opacity 0.2s ease;}.lightbox a.close { top:20px; right:30px; }.lightbox a.next { right:20px; top:50%; transform:translateY(-50%); }.lightbox a.prev { left:20px; top:50%; transform:translateY(-50%); }.lightbox a.close:hover, .lightbox a.next:hover, .lightbox a.prev:hover { opacity: 0.8; }/* ==========================================================================9. INTERMEDIALE ANPASSUNGEN (TABLET & LAPTOP SCHUTZ)========================================================================== */@media (max-width: 1024px) {.contact-layout {grid-template-columns: 1fr;}.contact-banner {display: none;}}/* ==========================================================================10. RESPONSIVE DESIGN (REINE MOBILE APPLIKATIONEN)========================================================================== */@media (max-width: 768px) {.nav {display: none !important;}.mobile-menu-btn {display: block !important;font-size: 32px;cursor: pointer;color: #fff;margin-right: 10px;user-select: none;}.mobile-nav {display: none;flex-direction: column;background: #111;padding: 20px;gap: 15px;}.mobile-nav a {color: #fff;font-size: 18px;padding: 8px 0;}.grid-3 {grid-template-columns: 1fr !important;gap: 20px;}.hero {flex-direction: column;height: auto !important;padding-top: 80px;padding-bottom: 40px;}.hero-left {width: 100% !important;text-align: center;padding: 0 20px;flex: 1 1 100%;min-height: auto;align-items: center;}.hero-left h1 {font-size: 2rem;}.hero-subtitle {margin: 0 auto;}.hero-buttons {margin-top: 1.5rem;width: 100%;flex-direction: column;gap: 0.8rem;}.hero-video {width: 100% !important;max-width: 100%;margin-top: 20px;transform: none;margin-left: 0;height: 220px;}.hero-video iframe {width: 100% !important;height: 100% !important;}.section-inner {padding: 0 1.5rem;}.section-title {font-size: 1.8rem;}.footer-top {flex-direction: column;text-align: center;gap: 20px;}.footer-social-group {flex-direction: column;align-items: center;}.footer-social {justify-content: center;}.lang-switcher {justify-content: center;margin-top: 10px;}.contact-hero h2 {font-size: 1.8rem;}.contact-center .contact-box {padding: 20px;min-height: auto;}.banner-box {height: 260px;}.contact-buttons {flex-direction: column;}} /* <= Das mobile Query schließt jetzt bombenfest und fehlerfrei! */