:root {
  --weiß: #ffffff;
  --hellgrau: #f7f7f7;
  --nachtblau: #1f2d3d;
  --sand: #eae5db;
  --crimson: #7b1d1d;
  --gold: #f2d479;
  --text: #2a2a2a;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--hellgrau);
  line-height: 1.7;
  font-size: 16px;
}

/* ---------------- HERO ---------------- */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Menü über Bild (Desktop) */
.topnav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(5px);
}

.topnav h1 a {
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--nachtblau);
  text-decoration: none;
}

.topnav nav a {
  color: var(--nachtblau);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.topnav nav a:hover {
  color: var(--crimson);
}

/* ---------------- INTRO ---------------- */

.intro {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  text-align: center;
  font-size: 1.2rem;
  color: var(--nachtblau);
}

/* ---------------- GRID ---------------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.grid-item {
  background: var(--sand);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.grid-item h2 {
  margin-bottom: 0.8rem;
  color: var(--nachtblau);
  font-family: Georgia, serif;
}

/* ---------------- FOOTER ---------------- */

/* ---------------- ACCESSIBILITY ---------------- */

.visually-hidden {
  position: absolute;
  left: -9999px;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 768px) {
  .hero-image {
    height: 60vh;
  }

  .topnav {
    position: static;
    flex-direction: column;
    background: var(--weiß);
  }

  .topnav nav {
    margin-top: 0.5rem;
  }

  .topnav nav a {
    margin: 0 0.8rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ---------------- ABOUT PAGE ---------------- */


.content {
  max-width: 900px;
  margin: 3rem auto 5rem;
  padding: 0 1.5rem;
}

.text-block {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--nachtblau);
  line-height: 1.8;
}

.text-block strong {
  font-family: Georgia, serif;
  color: var(--crimson);
}

/* === FOOTER (optimiert & kompakt) === */
.site-footer {
  background: var(--crimson, #731f1f);
  color: var(--gold, #f9c300);
  text-align: center;
  padding: 2.5rem 1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 1.5rem;
}

.footer-newsletter,
.footer-links {
  flex: 1 1 300px;
}

/* --- Newsletter --- */
.footer-newsletter h2 {
  color: inherit;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.footer-newsletter input[type="email"] {
  width: 70%;
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.footer-newsletter button {
  background: var(--gold, #f9c300);
  color: var(--crimson, #731f1f);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-newsletter button:hover {
  background: #ffe45c;
}

/* --- Footer-Links --- */
.footer-links nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.footer-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #ffe45c;
}

/* --- Social Icons --- */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: .5rem;
}
.social-links img,
.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  filter: brightness(0) invert(80%) sepia(60%) hue-rotate(10deg);
  transition: transform 0.2s, filter 0.2s;
}
.social-links a:hover img,
.social-links a:hover svg {
  transform: scale(1.15);
  filter: brightness(1.1) invert(95%) sepia(40%) hue-rotate(8deg);
}

/* --- Copyright --- */
.footer-copy {
  font-size: 0.8rem;
  margin-top: 1rem;
  opacity: 0.8;
}

