/* ===============================================================
   NEUER FOOTER FÜR ALTE KÜNSTLERSEITEN
=============================================================== */

/* ===============================================================
   FOOTERFARBEN / VARIABLEN
=============================================================== */
:root {
  --hauptfarbe: #226688;
  --hoverfarbe: #44a6c6;
  --schriftfarbe: #666666;
  --headlinefarbe: #fff;
  --footerfarbe_1: #f0f0f0;
  --footerfarbe_2: #e0e0e0;

  /* Falls genutzt: Abstand für Layout */
  --abstand-xl: 80px;
}

/* ===============================================================
   FOOTER BASIS
=============================================================== */
.footer {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  background-color: var(--footerfarbe_1);
  color: var(--schriftfarbe);
  margin-top: var(--abstand-xl);
  padding: 40px 0 0;
  box-sizing: border-box;
}

/* ===============================================================
   FOOTER GRID / LAYOUT
=============================================================== */
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  justify-items: center;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 30px;
  gap: 40px;
}

/* ===============================================================
   LOGO
=============================================================== */
.footer-logo img {
  width: 140px;
  height: auto;
  display: block;
  margin-top: 6px;
}

/* ===============================================================
   HEADLINES & TEXT
=============================================================== */
.footer h4 {
  color: var(--schriftfarbe);
  font-weight: 600;
  font-size: 1.25em;
  margin-bottom: 5px;
}

.footer p {
  margin: 4px 0;
  line-height: 1.5;
}

/* ===============================================================
   LINKS
=============================================================== */
.footer a {
  color: var(--hauptfarbe);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--hoverfarbe);
  text-decoration: underline;
}

/* ===============================================================
   ICON-LINE
=============================================================== */
.footer-iconline {
  font-size: 1.05em;
  margin: 4px 0;
}

.footer-iconline .glyphicon {
  color: var(--hauptfarbe);
  margin-right: 8px;
  top: 2px;
  position: relative;
}

/* ===============================================================
   FOOTER UNTEN (COPYRIGHT-LINIE)
=============================================================== */
.footer-bottom {
  background-color: var(--footerfarbe_2);
  text-align: center;
  padding: 20px 12px;
  font-size: 1em;
  border-top: 1px solid #ddd;
  color: var(--schriftfarbe);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}

.footer-bottom a {
  color: var(--hauptfarbe);
  margin: 0 8px;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--hoverfarbe);
  text-decoration: underline;
}

/* ===============================================================
   RESPONSIVE (600px)
=============================================================== */
@media (max-width: 600px) {
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding: 0 20px 30px;
  }

  .footer-logo {
    width: 100%;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto 16px auto;
    max-width: 160px;
  }

  .footer-col {
    margin-bottom: 12px;
  }

  .footer-bottom {
    text-align: center;
  }
}

/* ===============================================================
   RESPONSIVE (601px – 1100px)
=============================================================== */
@media (min-width: 601px) and (max-width: 1100px) {
  .footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
    justify-items: center;
    text-align: left;
    padding: 0 30px 30px;
  }

  .footer-logo img {
    margin: 0 auto;
    width: 130px;
  }
}