/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #2d2d2d;
  background-color: #fafaf8;
}

/* Hero */
.hero {
  background-color: #3a6b4a;
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  color: white;
}

.hero .tagline {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 1;
  max-width: 560px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* Main Content */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Sections */
section {
  margin-bottom: 3.5rem;
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3a6b4a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8f0ea;
}

p {
  margin-bottom: 1rem;
  color: #444;
}

strong {
  color: #2d2d2d;
}

/* Image placeholders */
.poster {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #e8f0ea;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  color: #6a9a76;
  font-size: 0.95rem;
  border: 2px dashed #b5d0ba;
}

.poster::before {
  content: "📷 Poster folgt";
}

/* Image placeholders */
.photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #e8f0ea;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  color: #6a9a76;
  font-size: 0.95rem;
  border: 2px dashed #b5d0ba;
}

.photo::before {
  content: "📷 Foto folgt";
}

/* Real images (once added) */
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

figure {
  margin: 1.5rem 0;
}

figure img {
  margin: 0;
  width: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

figcaption {
  font-size: 0.8rem;
  color: #999;
  padding: 0.4rem 0.6rem;
  background: #f5f5f3;
  border-radius: 0 0 8px 8px;
}

/* Dates list */
.dates {
  list-style: none;
  margin: 1rem 0;
}

.dates li {
  padding: 0.8rem 1rem;
  background: white;
  border-left: 4px solid #3a6b4a;
  margin-bottom: 0.5rem;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  font-weight: 600;
  color: #2d2d2d;
}

/* Calendar buttons */
.calendar-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.cal-button {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border: 2px solid #3a6b4a;
  border-radius: 6px;
  color: #3a6b4a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.15s, color 0.15s;
}

.cal-button:hover {
  background-color: #3a6b4a;
  color: white;
}

/* Map */
#map {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  margin: 1.5rem 0;
  overflow: hidden;
}

/* Sperrung-Marker – Zeichen 250 (roter Kreis, weißes Innen, roter Balken) */
.sperrung-marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle, white 58%, transparent 58%),
    #c0392b;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  cursor: default;
  position: relative;
}

.sperrung-marker::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #c0392b;
}

/* Contact box */
.contact-box {
  background: white;
  border: 1px solid #e0e8e2;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-box a {
  color: #3a6b4a;
  font-weight: 600;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  color: #999;
  border-top: 1px solid #e8e8e8;
}

/* Mobile */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 2.5rem 1.2rem;
  }

  main {
    padding: 2rem 1.2rem;
  }

  h2 {
    font-size: 1.4rem;
  }
}
