@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&family=Outfit:wght@300;400;500&display=swap');

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

body {
  font-family: 'Outfit', sans-serif;
  line-height: 1.5;
  color: #2B2627;
  background-color: #F5F1EC;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  padding: 40px 0 24px;
  text-align: center;
}

.logo img {
  max-width: 107px;
  height: auto;
}

main {
  padding: 16px 0 32px;
  min-height: calc(100vh - 200px);
  text-align: center;
}

section {
  margin-bottom: 48px;
}

h1, h2 {
  font-family: 'EB Garamond', serif;
}

h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2B2627;
}

p {
  margin-bottom: 12px;
}

a {
  color: #981E32;
}

a:hover {
  color: #2B2627;
}

ul {
  list-style: none;
  margin-bottom: 12px;
}

ul li {
  margin-bottom: 4px;
}

ul li::before {
  content: "– ";
}

blockquote {
  border-left: 2px solid #981E32;
  padding-left: 16px;
  margin-bottom: 16px;
  text-align: left;
}

blockquote p {
  margin-bottom: 4px;
  font-style: italic;
}

cite {
  font-size: 0.85rem;
  font-style: normal;
  color: #666;
}

img {
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

footer {
  border-top: 1px solid #ddd;
  padding: 16px 0;
  text-align: center;
  font-size: 0.85rem;
}

footer a {
  color: #2B2627;
  text-decoration: none;
}

footer a:hover {
  color: #981E32;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Impressum */
.impressum {
  text-align: left;
}

.impressum h2 {
  font-size: 1.25rem;
}

.impressum section {
  margin-bottom: 24px;
}

/* Mobile */
@media (max-width: 600px) {
  body {
    padding: 0 12px;
  }

  header {
    padding: 24px 0 16px;
  }

  .logo img {
    max-width: 80px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    margin-bottom: 36px;
  }
}
