* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
}
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../bilder/hero.jpg') center/cover no-repeat;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.hero.small {
  height: 40vh;
}
.cta-button {
  background: #007BFF;
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
}
nav {
  background: #0056b3;
  text-align: center;
  padding: 1rem;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
nav ul li {
  position: relative;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  background: #007BFF;
  list-style: none;
  padding: 0.5rem;
  border-radius: 4px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.content-section {
  padding: 2rem 1rem;
  text-align: center;
}
footer {
  background: #0056b3;
  color: white;
  text-align: center;
  padding: 1rem;
}
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.contact-form button {
  background-color: #007BFF;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.galerie-grid img {
  width: 100%;
  border-radius: 8px;
}
.slider-container {
  max-width: 600px;
  margin: 2rem auto;
  overflow: hidden;
  position: relative;
  height: 100px;
}
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  min-width: 100%;
  padding: 1rem;
  background: #f0f0f0;
  border-radius: 8px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 12px 18px;
  border-radius: 50%;
  text-decoration: none;
}
@media (max-width: 600px) {
  .hero { height: 60vh; padding: 2rem 1rem; }
  nav ul { flex-direction: column; }
}
