/* Mobile First Design */
:root {
  --text-light: #fff;
  --accent: #ff8c00;
  --hover: #000;
  --font-main: "Roboto", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-light);
  text-align: center;
  background-color: #000;
  overflow-x: hidden;
}

/* Hintergrundbild */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/ffd-150j-bg.jpg") center/cover no-repeat;
  z-index: -2;
  filter: brightness(0.8);
}

.footer-image {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: url("assets/ffd-150j-footer.png") center/cover no-repeat;
  z-index: -1;
}

/* Zentrierter Hauptcontainer */
.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.hero {
  padding: 3rem 1rem 2rem;
}

.logo {
  width: 200px;
  margin-bottom: 1rem;
  padding: 0 1rem;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.7));
}

.hero--image {
  max-width: 960px;
  display: block;
  margin: 4rem auto 0;
  padding: 0 2rem;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.7));
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: 1px;
}

.hero h2 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Highlights */
.highlights {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  padding: 2rem;
}

.highlights h3 {
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.day {
  margin-bottom: 1.5rem;
}

.day h4 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.day p {
  font-size: 1rem;
  line-height: 1.4;
}

/* Sponsorenbereich */
.sponsors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.sponsors img {
  max-width: 120px;
  height: auto;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.sponsors img:hover {
  opacity: 1;
}

/* Desktop-Optimierung */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .highlights h3 {
    font-size: 1.8rem;
  }

  .day p {
    font-size: 1.1rem;
  }
}
.day, .hero, .sponsors {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Navigation */
.nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 1rem 0;
}

.nav li {
  display: inline;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  opacity: 1;
  color: var(--hover);
  border-bottom-color: var(--hover);
}

@media (min-width: 768px) {
  .nav {
    gap: 2rem;
  }

  .nav a {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map */
