@font-face {font-family: 'Oswald';src: url('fonts/Oswald.ttf') format('truetype');font-weight: 400;font-style: no
rmal;font-display: swap;}
#mainwrapper {
  background: #000d;
}
.skip-link {
  position: absolute;
  left: -999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #000;
  color: #fff;
  padding: 0.5rem;
}

/* Default */
img {
  max-width: 200px;
  height: auto;
}

h3 {
  margin-bottom: .1rem;
}

/* h3 direkt NACH einem p */
p + h3 {
  margin-top: 3.5rem;
}

/* h3 direkt VOR einem p */
h3 + p {
  margin-top: 0;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: none;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin; 
  padding-bottom: 4px;
}

#navbar ul {
  display: flex;
  padding: 0.5rem 1rem;
  margin: 0;
  list-style: none;
}

#navbar li {
  margin: 0 1rem;
  flex: 0 0 auto;
}

#navbar a {
  text-decoration: none;
  color: green;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}

#navbar a:hover {
  color: darkgreen;
}

#navbar::-webkit-scrollbar {
  display: none;
}

/* Scroll-Anzeige */
#scroll-indicator {
  height: 4px;
  top: 44px;
  width: 0%;
  background-color: green; 
  transition: width 0.1s linear;
  position: fixed;
  margin-top: -4px;
  z-index: 1000;
}

  a, a:visited, a:link {color:orange}
  a:hover {color: lightskyblue }
  .time {
    min-width: 60px;
    display: inline-block;
    text-align: center;
  }

.footer-bar {
  background: white;
}
.footer-bar a {
  color: green;
}

.footer-address {
  display: flex;
  flex-wrap: wrap;
  font-style: normal;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-address span {
  white-space: nowrap;
  flex-basis: 25%;
}

@media (max-width: 768px) {
  .footer-address span {
    flex-basis: 50%;
  }
}

  /* Sektionen */
  section {
    padding: 6rem 2rem;
    text-align: left;
    margin: 0 auto;
    max-width: 800px;
  }

  section h2 {
    margin-bottom: 0;
    font-size: 2.5rem;
  }

  section h3 {
    font-size: 2rem;
    color: #ccc;
  }

  section p, section li {
    max-width: 800px;
    margin: 0 auto 1rem auto;
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .icon-list {
    list-style: none; /* Standard-Punkte entfernen */
    padding-left: 0;
}

.icon-list li {
    position: relative;
    padding-left: 60px; /* Platz für das Icon */
    margin-bottom: 1rem;
    line-height: 1.5;
    min-height: 2.5rem;
}

/* Icons als Pseudo-Elemente */
.icon-list li.bee::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;   /* Größe des Icons */
    height: 50px;
    background-image: url('images/bee.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-list li.silence::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-image: url('images/silence.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-list li.litter::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-image: url('images/litter.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-list li.nopets::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-image: url('images/nopets.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.rsvp-form {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
.checkbox-group {
    margin-top: 1.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #2575fc; /* moderne Browser */
}

.checkbox-item span {
    line-height: 1.4;
}
textarea {
  width: 100%;
  height: 10vh;
}
.rsvp-form label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #333;
}

.rsvp-form input {
    width: 100%;
    padding: 0.7rem 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.rsvp-form input:focus {
    outline: none;
    border-color: darkgreen;
    box-shadow: 0 0 0 2px rgba(37,117,252,0.15);
}

.rsvp-form button {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: bold;
    background: green;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.rsvp-form button:hover {
    background: #1a5ed8;
}

.rsvp-form button:active {
    transform: translateY(1px);
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}
#formStatus {font-size: 2rem}
  /* Responsive Anpassungen */
  @media (max-width: 768px) {
    section h2 {
      font-size: 2rem;
    }

    section p, section li {
      font-size: 1rem;
    }
    .rsvp-form {
        margin: 0.2rem 0;
        padding: 1.5rem;
    }
  }
