@font-face {
  font-family: 'Pacifico';
  src: url('…') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('…') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* Grundstruktur */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
}

p {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.5;
}


/* Headings */
h1 {
  font-family: 'Pacifico', cursive;
font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 400;
  line-height: 1.2;
  color: #1b1b1b;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

h2 {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  color: #1b1b1b;
}

h3 {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  font-weight: 400;
  margin: 0.5em 0;
  color: #1a1a1a;
}

.logo {
  display: block;
   margin: 10px auto 10px auto; /* statt z. B. 40px */
  height: auto;
  width: clamp(60px, 20vw, 100px); /* Skalierbar: mobil klein, Desktop moderat */
  border: none;
  box-shadow: none;
}

/* Paragraphs */
p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000;
}

/* Bilder */
img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: none;
  display: block;
  margin: 0 auto;
}


/* Buttons */
.zurueck-button,
.mehr-button {
  display: inline-block;
  background-color: #95d5b2;
  color: #1b1b1b;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  margin-top: 30px;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.zurueck-button:hover,
.mehr-button:hover {
  background-color: #40916c;
  color: white;
}

/* Footer */
footer {
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  border-top: 4px solid #2d6a4f;
}

.footer-note {
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}

#menu-toggle {
  display: none;
}

@media (max-width: 600px) {
  p {
    padding: 0 12px;
    font-size: 1rem;
    line-height: 1.5;
  }

 main {
  padding: 20px;
  margin: 10px auto;
  border-radius: 8px;
  max-width: 960px;
  width: 100%;
  box-sizing: border-box;
}
}

/* Pfade färben über currentColor */
.social-icons svg path {
  fill: currentColor;
}

/* Größe/Animation */
.social-icons svg {
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease;
}
.social-icons svg:hover {
  transform: scale(1.08);
}

/* Farben über 'color' je Icon */
.social-icons svg.facebook { color: #1877F2; } /* FB blau */
.social-icons svg.youtube  { color: #FF0000; } /* YT rot */
.social-icons svg.instagram{ color: #E4405F; } /* Insta pink */