/* layout.css */

/* Zentrierter Inhaltsbereich */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Globale Abschnittsabstände */
section {
  padding: var(--space-lg) 0; /* statt var(--space-xl) */
}

/* Hero-Bereich */
.hero {
  width: 100%;
}

.hero-image-wrapper {
  width: 100%;
  height: auto;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

body {
  text-align: left;
  background: var(--gradient-sentinel);
  color: var(--color-white);
}

/* Footer-Layout */
.footer {
  background: var(--color-gray-dark);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.footer-values {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: var(--font-size-small);
}

/* Responsive Verhalten */
@media (max-width: 768px) {
  .footer-values {
    flex-direction: column;
    gap: var(--space-sm);
  }
}
