:root {
  --color-bg: #faf7f2;
  --color-bg-alt: #f1ece2;
  --color-text: #3a352f;
  --color-accent: #959f94;
  --color-accent-dark: #6f776e;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
}

a {
  color: inherit;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav__menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav__menu a {
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav__menu a:hover {
  color: var(--color-accent-dark);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  display: block;
}

/* Hero */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 2fr 3fr;
  background: var(--color-bg);
  padding-top: var(--nav-height);
  box-sizing: border-box;
}

.hero__image-wrap {
  min-height: 100vh;
  padding: 32px;
  background: var(--color-bg);
  box-sizing: border-box;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--color-accent-dark);
  margin-bottom: 12px;
}

.hero__names {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: 16px;
}

.hero__date {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--color-accent-dark);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

/* Sections */

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
}

.section__intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  opacity: 0.85;
}

/* Timeline */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
  margin: 0 auto;
  border-left: 2px solid var(--color-accent);
}

.timeline__item {
  position: relative;
  padding: 0 0 40px 32px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
}

.timeline__time {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 4px;
}

.timeline__body h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.timeline__body p {
  margin: 0;
  opacity: 0.85;
}

/* Menu / Getränke */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 880px;
  margin: 0 auto;
}

.menu-group__title {
  font-size: 1.4rem;
  color: var(--color-accent-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-accent);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  padding: 6px 0;
  opacity: 0.9;
}

.menu-list li + li {
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

/* Location */

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.location__info h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.location__info address {
  font-style: normal;
  margin-bottom: 16px;
  opacity: 0.9;
}

.location__info p {
  margin: 0 0 12px;
}

.location__map {
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Footer */

.site-footer {
  text-align: center;
  padding: 40px 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-accent-dark);
}

/* Responsive */

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__image-wrap {
    min-height: 45vh;
    padding: 16px;
  }

  .hero__content {
    padding: 40px 24px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav__menu.is-open {
    max-height: 400px;
  }

  .nav__menu li {
    width: 100%;
    text-align: center;
  }

  .nav__menu a {
    display: block;
    padding: 14px 0;
  }

  .location {
    grid-template-columns: 1fr;
  }

  .location__map {
    min-height: 260px;
  }
}
