/* Grundlayout */
body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  background-color: #f4f4f4; /* Heller Hintergrund */
  color: #1a1a1a; /* Dunkler Text */
  text-align: center;
}

main {
  padding: 3em 1em;
  max-width: 800px;
  margin: 0 auto;
}

/* Logo */
.logo {
  width: 150px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1em;
}

/* Unsichtbare Hauptüberschrift */
h1 {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Sichtbare fette Begrüßung */
h2 {
  font-weight: 900; /* Lato Black */
  font-size: 2.4em;
  margin-top: 0;
  margin-bottom: 0.2em;
}

/* Tagline */
.tagline {
  font-size: 1.2em;
  color: #444444;
  margin-bottom: 2em;
}

/* Linkbereich */
.links {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
  margin-top: 1.5em;
}

.link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.link-item img {
  width: 48px;     
  height: 48px;
  margin-bottom: 0.3em;
}

.link-item a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #bbbbbb;
  padding-bottom: 1px;
  font-size: 1em;   
  transition: all 0.2s ease-in-out;
}

.link-item a:hover {
  border-color: #1a1a1a;
  color: #000000;
  text-shadow: 0 0 2px #aaaaaa;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
  margin: 3em auto 2em auto;
  max-width: 800px;
  padding: 0 1em;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

footer {
  margin-top: 4em;
  padding: 2em 0;
  font-size: 0.85em;
  color: #888888;
}

.footer-links a {
  color: #888888;
  text-decoration: none;
  border-bottom: 1px dotted #bbbbbb;
  transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
  color: #444444;
  border-color: #888888;
}
footer .copyright {
  font-size: 0.75em;
  color: #aaaaaa;
  margin-top: 0.5em;
}
