:root {
  --blush: #f7e9e3;
  --blush-dark: #eaceC0;
  --gold: #c6a35d;
  --sage: #8a9a7e;
  --text: #3a352f;
  --text-light: #6b6459;
  --cream: #fffaf5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .script {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  margin: 0 0 0.4em;
}

a {
  color: var(--gold);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Navigation */
nav.site-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--cream);
  padding: 1.2rem 1rem;
  border-bottom: 1px solid var(--blush-dark);
  position: sticky;
  top: 0;
  z-index: 10;
}
nav.site-nav a {
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.2rem;
}
nav.site-nav a.active,
nav.site-nav a:hover {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 30, 20, 0.38);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
}
.hero-content .script {
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-bottom: 0.3rem;
}
.hero-content .date {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1rem;
  opacity: 0.95;
}

/* Layout helpers */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.center {
  text-align: center;
}
.section-title {
  text-align: center;
  margin-bottom: 0.3rem;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: #fff;
  border: 1px solid var(--blush-dark);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}
.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}

/* Timeline (Ablauf) */
.timeline {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  border-left: 2px solid var(--gold);
}
.timeline li {
  position: relative;
  padding: 0 0 1.8rem 1.8rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline .time {
  font-weight: 700;
  color: var(--gold);
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.timeline .what {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}
.timeline .desc {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Menu / Getraenke lists */
.menu-section {
  margin-bottom: 2.5rem;
}
.menu-section h3 {
  color: var(--sage);
  border-bottom: 1px solid var(--blush-dark);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.menu-item .name {
  font-weight: 700;
}
.menu-item .desc {
  color: var(--text-light);
  font-size: 0.9rem;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff !important;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-top: 1rem;
}
.btn:hover {
  background: #b28e46;
}

/* Map */
.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--blush-dark);
  margin-top: 1.5rem;
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* Footer */
footer {
  text-align: center;
  padding: 2.5rem 1rem;
  background: var(--blush);
  color: var(--text-light);
  font-size: 0.9rem;
}
footer .script {
  color: var(--text);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto;
}
