/* ================================
   GLOBAL
================================ */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;     /* Inhalt: Arial */
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================
   LOGO
================================ */

.logo {
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 200;
}

.logo img {
  height: 200px;
  width: auto;
}

/* ================================
   VIDEO-BANNER
================================ */

.video-banner {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================
   MENÜ (Orbitron)
================================ */

.menu-container {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60%;
  height: 50px;                       /* Fixe Höhe */
  background: #1A1A1A;
  border-radius: 14px;
  border: 2px solid #0EA5FF33;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 150;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  height: 50px;                       /* Fixe Hover-Zone */
  margin: 0;
  padding: 0;
}

.menu > li {
  position: relative;
  margin-left: 25px;
  height: 50px;                       /* Fix */
  display: flex;
  align-items: center;
}

/* Hauptmenü-Schrift (Orbitron) */
.menu > li > a {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #33C8FF;

  display: flex;
  align-items: center;
  height: 50px;                       /* Exakt fixiert */
  padding: 0 6px;
  margin: 0;
  line-height: 1;                      /* verhindert Überdehnung */
}

.menu > li:hover > a {
  color: #0EA5FF;
  text-shadow: 0 0 8px #0EA5FF;
}

/* ================================
   SUBMENÜ – 2px ÜBERLAPPUNG (UNGAPPABLE)
================================ */

.menu li ul {
  display: none;
  position: absolute;
  top: 48px;                           /* <-- 2px OVERLAP → perfekt stabil */
  left: 50%;
  transform: translateX(-50%);
  
  background: #111;
  border: 1px solid #0EA5FF55;
  border-radius: 10px;
  min-width: 200px;
  padding: 12px 0;
  z-index: 9999;
}

.menu li:hover > ul {
  display: block;
}

.menu li ul li {
  padding: 10px 22px;
  white-space: nowrap;
  text-align: center;
}

.menu li ul li a {
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #33C8FF;
}

.menu li ul li a:hover {
  color: #0EA5FF;
  text-shadow: 0 0 6px #0EA5FF;
}

/* ================================
   INTRO SECTION
================================ */

.intro-section {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.intro-flex {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

.intro-image img {
  width: 380px;
  border-radius: 14px;
  border: 1px solid #0EA5FF33;
}

.intro-text h2 {
  font-size: 32px;
  color: #33C8FF;
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
}

.intro-text p {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ================================
   TEASER SECTION
================================ */

.teaser-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.teaser-card {
  background: #0A0A0A;
  border: 1px solid #0EA5FF33;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.25s;
}

.teaser-card:hover {
  border-color: #0EA5FFAA;
  box-shadow: 0 0 16px #0EA5FF55;
  transform: translateY(-4px);
}

.teaser-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #0EA5FF33;
}

.teaser-card-content {
  padding: 20px;
}

.teaser-card h3 {
  font-size: 20px;
  color: #33C8FF;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.teaser-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 18px;
}

.teaser-btn {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #0EA5FF;
  color: #33C8FF;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.teaser-btn:hover {
  background: #0EA5FF22;
  color: #0EA5FF;
  text-shadow: 0 0 8px #0EA5FF;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .menu-container {
    width: calc(100% - 40px);
  }

  .intro-flex {
    flex-direction: column;
    text-align: center;
  }

  .intro-image img {
    width: 100%;
    max-width: 400px;
  }
}
