
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

.burger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #fbeee6, #e8f0ff);
}

.hero h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #ff8fa3;
  color: white;
  border-radius: 25px;
  text-decoration: none;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section.alt {
  background: #f9f9f9;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  filter: saturate(1.3) contrast(1.1);
  transform: translateY(-5px) scale(1.02);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  max-height: 250px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery img:hover {
  filter: saturate(1.2) contrast(1.1);
  transform: scale(1.02);
}

#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #222;
  color: white;
  text-align: center;
  padding: 10px;
  z-index: 9999; 
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  nav { display: none; flex-direction: column; }
  nav.active { display: flex; }
  .burger { display: block; }
}


.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.form-group.full {
  flex: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 2px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  outline: none;
  background: #fff;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff8fa3;
  box-shadow: 0 0 0 3px rgba(255,143,163,0.2);
}

/* Floating Labels */
.form-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #888;
  font-size: 0.9rem;
  pointer-events: none;
  transition: 0.3s;
  background: white;
  padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -8px;
  font-size: 0.75rem;
  color: #ff8fa3;
}

/* Button schöner */
.btn {
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #ff758f;
  transform: translateY(-2px);
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

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


nav a {
  position: relative;
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* animierte Linie */
nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #ff8fa3;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #ff8fa3;
}

nav a:hover::after {
  width: 100%;
}