/* =========================
   Schrift (lokal, lizenzfrei)
   ========================= */
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/SourceSans3-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

/* =========================
   Grundlayout
   ========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #ffffff;
}

a {
  color: #8b1e3f; /* Weinrot */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   Header & Navigation
   ========================= */
header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-weight: 600;
}

/* =========================
   Mobile Navigation
   ========================= */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* =========================
   Inhalte
   ========================= */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero {
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  max-width: 700px;
  font-size: 1.1rem;
}

/* =========================
   Karten / Kacheln
   ========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #f6f7f8;
  padding: 1.5rem;
  border-radius: 6px;
}

/* =========================
   Footer
   ========================= */
footer {
  background: #f6f7f8;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}
.button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background-color: #8b1e3f; /* Weinrot */
  color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
}

.button:hover {
  background-color: #6f1832;
  text-decoration: none;
}
