/* Basis-Einstellungen */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f8f7f4;
  --accent: #7b1f2a;          /* dunkles Rot passend zum Logo */
  --accent-soft: #e4f2eb;     /* sanftes Grün wie im Logo-Hintergrund */
  --text: #222222;
  --muted: #666666;
  --max-width: 1100px;
  --radius: 10px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Globale Layout-Helfer */

main {
  padding: 0 16px 48px;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto 48px;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.section p {
  margin: 0 0 12px;
}
/* Navigation oben */

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Burger-Button mobil */
.nav-toggle {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ab Tablet: horizontale Navigation */
@media (min-width: 768px) {
  .nav-inner {
    padding: 12px 24px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    gap: 20px;
  }
}

/* Hero-Bereich */

.hero {
  background: linear-gradient(135deg, var(--accent-soft), #ffffff);
  padding: 32px 16px 40px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  margin-bottom: 40px;
}

.hero-logo {
  max-width: 260px;
  width: 60vw;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

.hero-subtitle {
  margin: 0;
  font-size: 1.1rem;
  color: var(--muted);
}

/* Öffnungszeiten & Adresse */

.section-hours {
  background-color: #ffffff;
  padding: 24px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hours-address {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours,
.address {
  background-color: #faf9f7;
  padding: 16px 18px;
  border-radius: var(--radius);
}

/* Über-Bereich */

.section-about {
  background-color: #ffffff;
  padding: 24px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* Galerie */

.section-gallery {
  background-color: #ffffff;
  padding: 24px 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

/* Kontakt */

.section-contact {
  background-color: #ffffff;
  padding: 24px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section-contact a {
  color: var(--accent);
  text-decoration: none;
}

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

/* Footer */

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.social-links {
  margin-top: 6px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  text-decoration: underline;
}

/* Responsive ab Tablet-Größe */

@media (min-width: 768px) {
  main {
    padding: 0 24px 56px;
  }

  .hero {
    padding: 40px 24px 48px;
  }

  .hero-logo {
    max-width: 300px;
  }

  .section {
    margin-bottom: 56px;
  }

  .hours-address {
    flex-direction: row;
  }
}
