/* =====================================
   Gästeinformationen A–Z
===================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif, Tahoma, Geneva, Verdana;
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

header {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  background: linear-gradient(120deg, #2c5e1a 0%, #4a7c2a 100%);
  color: white;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Zweispaltiges Inhaltsverzeichnis */
.az-nav {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin: 30px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
}

.az-nav h2 {
  color: #2c5e1a;
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8f5e9;
  font-size: 1.8rem;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.az-nav ul {
  list-style: none;
}

.az-nav li {
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
  transition: all 0.3s ease;
}

.az-nav li:hover {
  background-color: #f8fff8;
  border-radius: 8px;
}

.az-nav a {
  color: #444;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.az-nav a:hover {
  background: #e8f5e9;
  color: #2c5e1a;
  transform: translateX(5px);
}

.az-nav a i {
  margin-right: 12px;
  width: 22px;
  text-align: center;
  color: #4caf50;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
}

.info-section {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #4caf50;
}

.info-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.info-section h2 {
  color: #2c5e1a;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

.info-section h2 i {
  margin-right: 15px;
  background: #e8f5e9;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
}

.info-section p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #555;
}

.highlight {
  background: #e8f5e9;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid #4caf50;
}

.contact-box {
  background: linear-gradient(120deg, #2c5e1a 0%, #4a7c2a 100%);
  color: white;
  border-radius: 15px;
  padding: 25px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-width: 800px;
}

.contact-box h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contact-info {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
}

.btn {
  display: inline-block;
  background: white;
  color: #2c5e1a;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

footer {
  text-align: center;
  margin-top: 50px;
  padding: 25px;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .two-columns {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  .info-section {
    padding: 20px;
  }
  
  .info-section h2 {
    font-size: 1.5rem;
  }
}
.icon-svg {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0;
  fill: #318d5a;
}
.section-icon {
  width: 50px;
  height: 50px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #4caf50;
}

/* =====================================
   Hero-Bereich für Gästeinfo-Seite
===================================== */
.hero-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  color: white;
  text-shadow: 0 0 8px #000;
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  max-width: 90%;
}

/* Tablet (z. B. bis 1024px) */
@media (max-width: 1024px) {
  .hero-image {
    height: 400px;
  }
  .hero-text {
    font-size: 2.5em;
  }
}

/* Smartphone (z. B. bis 768px) */
@media (max-width: 768px) {
  .hero-image {
    height: 300px;
  }
  .hero-text {
    font-size: 1.8em;
  }
}

/* =====================================
  Responsive Navigation für kleine Bildschirme
===================================== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1em;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.5em 0;
    border-top: 1px solid #ccc;
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5em;
    margin-top: 0;
  }
}

/* Bis 768px: Mobile-Menü */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    margin-left: 1em;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1em;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 0.6em 1em;
    background: #256f45;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
}
.nav-toggle {
  font-size: 1.1em;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
  align-self: center;
  margin: 10px 20px 10px 20px;
}