:root {
    --font-color: #C8B568;
    --bg-color: #000000;
    --hover-color: #D19929;
    --accent-color: #5C3A79;
}

/* FOOTER */
.footer {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  /*padding: 2rem 1rem;*/
}

.footer-container {
    background-color: black;
    max-width: /*1200px*/ 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  display: block;
  width: 80px;
  height: auto;
  max-width: 100%;
}

/* Optional Hover-Effekt */
.footer-logo:hover {
  filter: brightness(1.2);
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-column ul li {
  margin-bottom: 0.7rem;
}

.footer-column ul li a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.footer-column ul li a:hover {
  color: var(--color-accent);
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.5rem;
} .footer-copy p {
  margin-top: 16px;
  margin-bottom: 24px;
}
