﻿/* Grunddesign */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #000;
  color: #fff;
}

h1, h2 {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  text-align: center;
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6em;
  color: #fff;
  flex-grow: 1;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00f;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* Hero */
.hero {
  background-image: url('images/header.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 1em 2em;
  border-radius: 10px;
}

.hero-text h1 {
  margin: 0;
  font-size: 2em;
}

.hero-text p {
  font-size: 1em;
  margin: 0.5em 0 0;
}

/* Galerie */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px;
}

.gallery img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  width: 300px;
}

/* Footer */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  color: #00f;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 10px;
    border: 1px solid #222;
  }

  nav ul.showing {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    text-align: center;
    width: 100%;
  }

  .hero {
    height: 200px;
  }

  .hero-text h1 {
    font-size: 1.5em;
  }

  .hero-text p {
    font-size: 0.9em;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }
}
