/* Grundlegendes Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: #222;
  background-color: #f6f5f3;
  line-height: 1.6;
}

/* Header */
.site-header {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
  padding: 0 2rem;
}

.title-block h1 {
  /*font-family: "Libre Baskerville", serif; */
  font-family: "Open Sans";
  font-size: 2rem;
  font-weight: 400;
}

.title-block span {
  margin: 0 0.3rem;
  color: #999;
}

.main-nav {
  margin-top: 1rem;
  display: flex;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: #444;
  font-size: 0.95rem;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  height: 60vh;
  background-image: url("hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  color: #f5f5f5;
  font-size: 1.1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* Intro */
.intro {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
  font-size: 1rem;
  color: #333;
}

/* Sektionen */
.sections {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.section-card {
  padding: 2rem;
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.section-card h2 {
  /* font-family: "Libre Baskerville", serif; */
  font-family: "Open Sans";
  font-weight: 400;
  margin-bottom: 0.8rem;
}

/* Footer */
.site-footer {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin: 4rem 0 2rem 0;
}
