/* Schriftarten */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2&family=Comic+Neue:wght@700&display=swap');

body {
  font-family: 'Comic Neue', cursive, 'Baloo 2', cursive, sans-serif;
  background: url('../images/wood-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #444;
  margin: 0;
}

/* Überschriften geschwungen und bunt */
h1, h2 {
  font-family: 'Baloo 2', cursive;
  color: #f17c7c; /* fröhliches Rot-Pink */
  text-shadow: 1px 1px 2px #ffdede;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Link-Stil */
a, a:visited {
  color: #fbbf67; /* Sonniges Gelb */
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover, a:focus {
  color: #f17c7c;
  text-decoration: underline;
}

/* Header Hintergrund */
header {
  background: #fbbf67;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px 0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

/* Container Flex & Zentrierung */
.container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo mit geschwungenen Buchstaben */
.logo {
  font-family: 'Baloo 2', cursive;
  font-size: 2.8rem;
  color: #f17c7c;
  letter-spacing: 3px;
  text-shadow: 2px 2px 3px #ffdede;
}

/* Navigation mit runden Buttons */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  background: #f17c7c;
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(241,124,124,0.5);
  font-weight: 700;
  transition: background 0.3s;
}

nav a:hover {
  background: #fbbf67;
  color: #333;
}

/* Hero mit sanftem Glow */
.hero {
  background: rgba(255, 223, 190, 0.9);
  border-radius: 40px;
  margin: 40px 5%;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(241,124,124,0.3);
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #f17c7c;
  text-shadow: 2px 2px 4px #fbbf67;
}

.hero-text p {
  font-size: 1.5rem;
  color: #6c4f3c;
  font-weight: 600;
}

/* Abschnitte mit weichen Rundungen */
section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  padding: 40px 30px;
  margin: 30px 5%;
  box-shadow: 0 6px 15px rgba(241,124,124,0.15);
  text-align: center;
}

/* Buttons rund und freundlich */
.button {
  background: #fbbf67;
  color: #6c4f3c;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(251,191,103,0.5);
  transition: background 0.3s, color 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.button:hover {
  background: #f17c7c;
  color: white;
  box-shadow: 0 6px 15px rgba(241,124,124,0.7);
}

/* Galerie Frame mit runden Ecken */
.gallery-frame {
  margin: 40px 5%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(241,124,124,0.3);
}

.gallery-frame iframe {
  border: none;
  border-radius: 40px;
  width: 100%;
  height: 600px;
  display: block;
}

/* Footer weich und freundlich */
footer {
  background: #fbbf67;
  padding: 25px 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  color: #6c4f3c;
  text-align: center;
  font-weight: 600;
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

footer a {
  color: #f17c7c;
  font-weight: 700;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
