/* ===============================
   Kalendra Footer
================================ */

.footer {
  background-color: #00505f; /* Kalendra Grün */
  padding: 80px 20px 50px;
  color: #ffffff;
  text-align: center;
}

.footer-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* Navigation */
.footer-nav {
  font-size: 18px;              /* größer */
  letter-spacing: 0.8px;
  font-weight: 400;
  line-height: 1.8;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 16px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}

/* Divider */
.divider {
  opacity: 0.6;
  font-weight: 300;
}

/* Copyright */
.footer-copy {
  margin-top: 28px;
  font-size: 15px;
  opacity: 0.8;
  letter-spacing: 0.6px;
}


@media (max-width: 600px) {

  .footer {
    padding: 60px 20px 40px;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 17px;
  }

  .divider {
    display: none;
  }

  .footer-nav a {
    margin: 0;
  }

  .footer-copy {
    margin-top: 24px;
  }
}

/* ========================================
   Sticky Footer – Kalendra
======================================== */

/* Reset */
html, body {
  height: 100%;
  margin: 0;
}

/* Body als Flex-Layout */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Der komplette Seiten-Wrapper */
.layout-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main-Bereich wächst */
.site-main {
  flex: 1 0 auto;
}

/* Footer bleibt unten */
.footer {
  flex-shrink: 0;
}
