/* Zusatzstyles zur Tailwind-CDN-Variante (Haupt-Landingpage) */

body {
  background-color: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.gold {
  color: #d4af37;
}

.gold-bg {
  background-color: #d4af37;
}

.hover-gold:hover {
  color: #d4af37;
}

.border-gold {
  border-color: #d4af37;
}

.text-gold {
  color: #d4af37;
}

.bg-gold {
  background-color: #d4af37;
}

.brand-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 36rem;
}

.brand-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11rem;
  height: 11rem;
  padding: 0.75rem;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.brand-link:hover,
.brand-link:focus-visible {
  border-color: #d4af37;
  transform: translateY(-2px);
  opacity: 1;
  outline: none;
}

.brand-link img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (min-width: 640px) {
  .brand-buttons {
    gap: 2.5rem;
    max-width: 42rem;
  }

  .brand-link {
    width: 12rem;
    height: 12rem;
  }
}

@media (min-width: 1024px) {
  .brand-link {
    width: 13rem;
    height: 13rem;
  }
}
