body {
  font-family: Arial, sans-serif;
  margin: 0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  padding: 15px 30px;
  flex-wrap: wrap; /* wichtig für mobile */
}

.navbar .logo {
  color: white;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
}

/* Hero */
.hero {
  height: 80vh;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0') center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.btn {
  background: #28a745;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Sections */
section {
  padding: 50px 20px;
  text-align: center;
}

/* Form */
.reservation form {
  max-width: 400px;
  margin: auto;
}

input, select, button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  font-size: 16px; /* wichtig für mobile */
}

button {
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
}

/* Success */
.success {
  color: green;
  display: none;
}

/* 🔴 MOBILE (Handy) */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }

  .navbar ul li {
    width: 100%;
  }

  .navbar a {
    display: block;
    padding: 10px;
  }

  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  section {
    padding: 30px 15px;
  }
}

/* 🟡 TABLET */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2rem;
  }
}