/* GLOBAL -------------------------------------------------- */

body {
  margin: 0;
  padding: 0;
  background: #0d0d0d;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

a {
  color: #fff;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* HEADER -------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  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;
}

/* Desktop Navigation */
.nav a {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: 0.3s;
}

.nav a:hover {
  opacity: 1;
  color: #fff;
  text-shadow:
    0 0 6px rgba(255,255,255,0.6),
    0 0 12px rgba(255,255,255,0.4),
    0 0 18px rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Mobile Menu Button – Desktop verstecken */
.mobile-menu-btn {
  display: none;
}

/* HERO -------------------------------------------------- */

.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);
}

.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 -------------------------------------------------- */

.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: 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),
    0 0 28px rgba(255,255,255,0.20);
  transform: translateY(-3px) scale(1.04);
}

.btn.primary {
  background: #fff;
  color: #000;
}

.btn.secondary {
  border: 1px solid #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #000;
}

/* HERO VIDEO -------------------------------------------------- */

.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;
}

/* SECTIONS -------------------------------------------------- */

.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;
}

.section-title {
  font-size: 2.2rem;
  margin: 0.5rem 0 1rem 0;
}

.section-subtitle {
  opacity: 0.8;
  max-width: 600px;
}

/* GRID -------------------------------------------------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* CARD -------------------------------------------------- */

.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;
}

/* FOOTER -------------------------------------------------- */

.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: nowrap;
}

.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 {
  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: 0.3s;
  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: 0.3s;
}

.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;
  transition: 0.3s;
}

.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),
    0 0 18px rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* LANGUAGE SWITCHER -------------------------------------------------- */

.lang-switcher {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.lang-btn {
  background: #111;
  color: #fff;
  border: 1px solid #333;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 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);
}

/* CONTACT PAGE -------------------------------------------------- */

.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);
  position: relative;
  overflow: hidden;
}

.contact-banner:first-child .banner-box {
  background: url('assets/images/bannercapa.jpg') center/cover no-repeat;
}

.contact-banner:last-child .banner-box {
  background: url('assets/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);
}

/* PREMIUM CONTACT FORM -------------------------------------------------- */

.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;
}

.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;
  transition: 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;
  transition: 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; }
}

/* CAPTCHA Honeypot */
.robot-check {
  display: none !important;
}

/* MOBILE -------------------------------------------------- */

@media (max-width: 768px) {

  /* Desktop Navigation ausblenden, Mobile zeigen */
  .nav {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block !important;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
    margin-right: 10px;
  }

  .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-bottom: 40px;
  }

  .hero-left {
    width: 100% !important;
    text-align: center;
    padding: 0 20px;
  }

  .hero-video {
    width: 100% !important;
    margin-top: 20px;
    transform: none;
    margin-left: 0;
    height: 220px;
  }

  .hero-video iframe {
    width: 100% !important;
    height: 100% !important;
  }

  .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-layout {
    grid-template-columns: 1fr;
  }

  .banner-box {
    height: 260px;
  }

  .contact-center .contact-box {
    min-height: auto;
 }
	
/* Laufband Container */
.laufband {
  overflow-x: auto;        /* horizontales Scrollen */
  white-space: nowrap;     /* verhindert Umbruch */
  padding: 10px 0;         /* etwas Abstand oben/unten */
}

/* Track mit Flexbox */
.laufband-track {
  display: flex;
  gap: 12px;               /* Abstand zwischen Bildern */
}

/* Bilder */
.laufband-track img {
  flex: 0 0 auto;          /* verhindert automatisches Schrumpfen */
  width: 220px;            /* feste Breite */
  height: 150px;           /* feste Höhe für Einheitlichkeit */
  object-fit: cover;       /* Bild wird sauber zugeschnitten */
  border-radius: 8px;
}

/* Hover-Effekt */
.laufband-track img:hover {
  transform: scale(1.05);  /* leichtes Vergrößern beim Hover */
}

@keyframes scroll { 
  from { transform: translateX(0); } 
  to { transform: translateX(-50%); } 
}

/* ⭐ Text markieren verhindern */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ⭐ Bilder schützen */
img {
  pointer-events: none;
}

.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;
}
.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%); }
