/* ===============================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   BODY
================================ */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #2f2f2f;
  color: #ffffff;
  line-height: 1.6;
}

/* ===============================
   HEADER
================================ */
header {
  height: 160px;
  background: linear-gradient(to bottom, #1e1e1e, #2b2b2b);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 3px solid #f5b400;
}

/* LOGO */
header img {
  height: 130px;
  width: auto;
}

/* ===============================
   NAVIGATION (DESKTOP)
================================ */
nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 18px;
  font-weight: bold;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  color: #f5b400;
}

nav a.btn {
  border: 2px solid #f5b400;
  padding: 8px 16px;
}

/* ===============================
   HERO VIDEO
================================ */
.hero-video {
  width: 100%;
  height: 65vh;
  overflow: hidden;
  background: #000;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   SEITENINHALT
================================ */
main {
  max-width: 1100px;
  margin: auto;
  padding: 80px 40px;
  background: #3a3a3a;
}

h1 {
  color: #f5b400;
  margin-bottom: 25px;
  font-size: 36px;
}

p {
  margin-bottom: 18px;
  font-size: 18px;
}

/* ===============================
   FOOTER
================================ */
footer {
  background: #1e1e1e;
  padding: 20px;
  text-align: center;
  border-top: 2px solid #f5b400;
  font-size: 14px;
}

/* ===============================
   MOBILE (SEHR WICHTIG)
   NAV BLEIBT SICHTBAR
================================ */
@media (max-width: 768px) {

  header {
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 15px 15px 10px;
  }

  header img {
    height: 90px;
    margin-bottom: 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  nav a {
    margin-left: 0;
    font-size: 14px;
    padding: 6px 10px;
  }

  .hero-video {
    height: 40vh;
  }

  main {
    padding: 60px 20px;
  }

  h1 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }
}
nav a {
  position: relative;
  transition: color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f5b400;
  transition: width 0.25s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a.btn {
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

nav a.btn:hover {
  transform: translateY(-2px);
}
h1 {
  position: relative;
  padding-bottom: 15px;
}

h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #f5b400;
}
main {
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-video {
  position: relative;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
}
footer {
  letter-spacing: 0.5px;
  opacity: 0.9;
}
nav a {
  position: relative;
  transition: color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f5b400;
  transition: width 0.25s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}
nav a.btn {
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

nav a.btn:hover {
  background: #f5b400;
  color: #000;
  transform: translateY(-2px);
}
h1 {
  position: relative;
  padding-bottom: 14px;
}

h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 3px;
  background: #f5b400;
}
main {
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-video {
  position: relative;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.12),
    rgba(0,0,0,0.35)
  );
  pointer-events: none;
}
@media (max-width: 768px) {

  nav a {
    padding: 6px 10px;
    border-radius: 4px;
  }

  nav a:hover {
    background: rgba(255,255,255,0.06);
  }
}
footer {
  letter-spacing: 0.5px;
  opacity: 0.9;
}
/* ===============================
   SIMULATOR CARDS
================================ */
.sim-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.sim-card {
  background: #1f1f1f;
  border-left: 4px solid #f5b400;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sim-card h3 {
  color: #f5b400;
  margin-bottom: 15px;
  font-size: 22px;
}

.sim-card ul {
  list-style: none;
}

.sim-card li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.sim-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #f5b400;
  font-weight: bold;
}

/* Hover-Effekt */
.sim-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Mobile Feinschliff */
@media (max-width: 768px) {
  .sim-card {
    padding: 24px;
  }
}
/* ===============================
   EVENT CARDS
================================ */
.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.event-card {
  background: #1f1f1f;
  border-left: 4px solid #f5b400;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card h3 {
  color: #f5b400;
  margin-bottom: 15px;
}

.event-card p {
  margin-bottom: 15px;
}

.event-card ul {
  list-style: none;
}

.event-card li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.event-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #f5b400;
  font-weight: bold;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

/* CTA */
.event-cta {
  margin-top: 80px;
  padding: 60px 40px;
  background: #262626;
  text-align: center;
  border-top: 3px solid #f5b400;
}

.event-cta h2 {
  color: #f5b400;
  margin-bottom: 20px;
}

.event-cta a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  border: 2px solid #f5b400;
  color: #f5b400;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease, color 0.2s ease;
}

.event-cta a:hover {
  background: #f5b400;
  color: #000;
}
/* ===============================
   EVENT FORMULAR
================================ */
.event-form {
  max-width: 500px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-form input,
.event-form textarea {
  padding: 12px;
  font-size: 16px;
  border: none;
  background: #1c1c1c;
  color: #fff;
}

.event-form input::placeholder,
.event-form textarea::placeholder {
  color: #aaa;
}

.event-form button {
  margin-top: 10px;
  padding: 14px;
  background: #f5b400;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.event-form button:hover {
  background: #ffca2c;
}
/* ===============================
   FOOTER IMPRESSUM LINK
================================ */
.site-footer a {
  color: #f5b400;
  text-decoration: none;
  font-weight: bold;
}

.site-footer a:hover {
  text-decoration: underline;
}
.footer-btn {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid #f5b400;
  color: #f5b400;
  text-decoration: none;
  margin-top: 10px;
}

.footer-btn:hover {
  background: #f5b400;
  color: #001;
}
