.footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

/* Brand Column */
.footer__brand { display: flex; flex-direction: column; gap: 1rem; }

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  /* Originalfarben des Logos auf dunklem Hintergrund */
  filter: brightness(1.15) contrast(1.05);
  opacity: 0.95;
}
.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer__stars {
  display: flex;
  gap: 0.375rem;
  margin-top: 0.25rem;
}
.footer__stars svg { width: 18px; height: 18px; color: var(--red); opacity: 1; }

/* Links Column */
.footer__col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.footer__links a:hover { color: var(--white); }
.footer__links a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red-light);
  opacity: 0.5;
  flex-shrink: 0;
}
.footer__links a:hover::before { opacity: 1; }

/* Contact Column */
.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.footer__contact-item:is(a):hover { color: var(--white); }
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--red-light); opacity: 0.8; }

/* Bottom Bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast);
}
.footer__legal a:hover { color: var(--white); }

/* Powered-by Zeile */
.footer__powered {
  text-align: center;
  padding: 0.6rem var(--container-px) 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__powered a {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  transition: color 0.15s;
}
.footer__powered a:hover { color: var(--yellow); }
