*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-cream: #fdf8f0;
  --color-warm-white: #fff9f2;
  --color-dark: #2c2c2c;
  --color-text: #3d3d3d;
  --color-muted: #6b6b6b;
  --color-accent: #4a7c59;
  --color-accent-light: #7ab51d;
  --color-accent-bg: #e8f0e4;
  --color-warm-brown: #8b6f4e;
  --color-border: #e0d6c8;
  --color-rose: #c45b6e;
  --color-rose-bg: #fdf0f2;
  --color-gold: #c49a3c;
  --color-gold-bg: #fdf6e8;
  --color-teal: #3a8a8a;
  --color-teal-bg: #e6f4f4;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 90px;
  width: auto;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

nav a:hover,
nav a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  margin: 5px 0;
  transition: transform 0.3s;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-gold-bg) 0%, var(--color-warm-white) 40%, var(--color-accent-bg) 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
  font-family: var(--font-serif);
}

.hero .divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold), var(--color-rose));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.shop-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: var(--color-accent);
  color: white;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(90, 122, 58, 0.3);
}

.shop-button:hover {
  background: var(--color-warm-brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 122, 58, 0.4);
}

/* Sections */
section {
  padding: 4.5rem 1.5rem;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold), var(--color-rose));
  margin-bottom: 2rem;
  border-radius: 2px;
}

/* Buchhandlung */
#buchhandlung {
  background: var(--color-warm-white);
}

.buchhandlung-content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.highlight-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.8rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid var(--color-accent);
}

.highlight-card:nth-child(2) {
  border-top-color: var(--color-rose);
}

.highlight-card:nth-child(2) .highlight-icon {
  color: var(--color-rose);
}

.highlight-card:nth-child(3) {
  border-top-color: var(--color-gold);
}

.highlight-card:nth-child(3) .highlight-icon {
  color: var(--color-gold);
}

.highlight-card:nth-child(4) {
  border-top-color: var(--color-teal);
}

.highlight-card:nth-child(4) .highlight-icon {
  color: var(--color-teal);
}

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

.highlight-icon {
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.highlight-icon svg {
  width: 48px;
  height: 48px;
}

.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Team */
#team {
  background: var(--color-cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-accent-bg);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-accent);
  overflow: hidden;
}

.team-card:nth-child(2) .team-avatar {
  border-color: var(--color-rose);
  background: var(--color-rose-bg);
}

.team-card:nth-child(2) .team-avatar svg {
  fill: var(--color-rose);
}

.team-card:nth-child(3) .team-avatar {
  border-color: var(--color-gold);
  background: var(--color-gold-bg);
}

.team-card:nth-child(3) .team-avatar svg {
  fill: var(--color-gold);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar svg {
  width: 48px;
  height: 48px;
  fill: var(--color-accent);
  opacity: 0.6;
}

.team-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
}

.team-card .role {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Veranstaltungen */
#veranstaltungen {
  background: var(--color-warm-white);
}

.event-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  margin-bottom: 1.5rem;
}

.event-date {
  background: var(--color-accent);
  color: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  text-align: center;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.event-date .info {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 0.3rem;
}

.event-content {
  padding: 1.5rem 2rem;
  flex: 1;
}

.event-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.event-content p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.event-tag {
  display: inline-block;
  background: var(--color-rose-bg);
  color: var(--color-rose);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
  margin-bottom: 0.6rem;
}

.events-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-accent-bg);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  font-size: 0.95rem;
  color: var(--color-text);
}

.events-note a {
  color: var(--color-accent);
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--color-dark);
  color: #ccc;
  padding: 3.5rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

footer h4 {
  font-family: var(--font-serif);
  color: white;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

footer p,
footer address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
}

footer a {
  color: var(--color-accent-light);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.hours-table {
  width: 100%;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 0.15rem 0;
}

.hours-table td:first-child {
  font-weight: 600;
  color: white;
  width: 30px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}

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

.social-links svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-bottom {
  max-width: 1000px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  nav a:last-child {
    border-bottom: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    flex-direction: row;
    gap: 0.5rem;
    padding: 1rem;
    min-width: unset;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  section {
    padding: 3rem 1.2rem;
  }
}
