@charset "utf-8";
/* CSS Document */

/* Hintergrund */
.bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    object-fit: cover;
    z-index: -1;
}

/* Logos Container */
.logos-vertical {
    position: absolute;
    top: 35%;
    left: 30%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(25px, 4vw, 60px);   /* 👈 automatisch responsive */
    z-index: 10;
}

/* Logo Größen */
.logos-vertical img {
    height: clamp(45px, 6vw, 120px); /* Smartphone → Laptop → Desktop */
    width: auto;
}

/* Footer Text */
.footer-text {
  text-align: center;
  padding: 12px 16px;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  line-height: 1.4;
  font-family: 'Arial', sans-serif;
  color: #444;
}

.footer-text a {
  color: #444;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-text a:hover {
  color: #000;
  text-decoration: underline;
}



html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

/* Content füllt den Platz */
.content {
  flex: 1;
}
