/* Grundlayout */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, rgb(2, 11, 108), rgb(2, 32, 252));
  background-attachment: fixed;
  background-size: cover;
  color: #222;
}

/* Header + Footer – EXAKT GLEICH */
.site-title-wrapper,
.footer-wrapper {
  max-width: 1800px;
  margin: 20px auto;
  text-align: center;
  padding: 40px 20px;   /* ← IDENTISCH */
  color: white;
}

.title-line,
.footer-line {
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin: 10px auto;    /* ← IDENTISCH */
  width: 100%;
  max-width: 1800px;
}

/* Header-Typografie */
.site-title {
  font-weight: 300;
  font-size: 2.4rem;
  letter-spacing: 3px;
  margin: 10px 0;       /* ← IDENTISCH */
  text-transform: lowercase;
}

/* Footer-Typografie – exakt gleiche Höhe wie Header */
.footer-text {
  font-weight: 300;
  font-size: 2.4rem;    /* ← GLEICHE SCHRIFTGRÖSSE WIE HEADER */
  letter-spacing: 3px;  /* ← IDENTISCH */
  margin: 10px 0;       /* ← IDENTISCH */
  text-transform: lowercase;
}

.footer-text a {
  color: white;
  text-decoration: none;
}
.footer-text a:hover {
  text-decoration: underline;
}

/* 4 Spalten */
.four-columns {
  display: flex;
  gap: 20px;
  max-width: 1800px;
  margin: 10px auto;
  padding: 0 20px;
}

/* Säulen */
.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  color: white;
  cursor: pointer;
}

/* Header der Säule */
.column-header {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.column-header h2 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Farbwelten */
.astro-color { background: #1a3a6e; }
.italia-color { background: #d87b2f; }
.stadt-color { background: #8b1e2d; }
.natur-color { background: #3c6e47; }

/* Slideshow – hochkant */
.slideshow {
  position: relative;
  width: 100%;
  padding-top: 180%; /* Hochkant */
  overflow: hidden;
}

.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
}

/* Hover-Effekt */
.column:hover .slideshow img.active {
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

/* Mobile */
@media (max-width: 900px) {
  .four-columns {
    flex-direction: column;
  }
}

/* Sehr kleine Screens */
@media (max-width: 600px) {
  .site-title {
    font-size: 1.8rem;
  }
  .footer-text {
    font-size: 1.8rem;
  }
  .slideshow {
    padding-top: 200%;
  }
}

/* Header-Link wie auf allen anderen Seiten */
.title-link {
  color: white;
  text-decoration: none;
}
.title-link:hover {
  text-decoration: underline;
}

/* Säulen-Links weiß und ohne Unterstreichung */
.four-columns a {
  color: white;
  text-decoration: none;
}

/* Kategorie-Überschriften weiß und ohne Unterstreichung */
.four-columns h2 {
  color: white;
  text-decoration: none;
}