/* Footer section */
.footer-section {
  background: #BA9C78;
  width: 100%;
  max-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
  box-sizing: border-box;
  position: relative; /* Relative position to stay at the bottom of the content */
  z-index: 1; /* Ensures it does not overlap content */
  bottom: 0px;
  font-family: 'Aptos';
}

.footer-content {
  flex-grow: 1;
}

.footer-cta {
  padding: 0 10px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-row-large {
  width: 100%;
  color: #ffffff;
}

.footer-column {
  flex: 1;
}

.footer-logo-column {
  display: flex;
  position: relative;
  top: 62px;
  padding-left: 11px;
}

.footer-logo {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}

.footer-logo img {
  max-width: 120px;
  margin-right: 10px;
}

.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-family: 'SitkaBanner';
  margin: 0;
  align-self: flex-end;
}

.footer-contact-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Aptos';
}

.single-cta {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.single-cta i {
  color: #ffffff;
  font-size: 30px;
  margin-right: 10px;
}

.cta-text {
  display: flex;
  align-items: center;
}

.cta-text span {
  color: #ffffff;
  font-size: 15px;
}

.mail-to {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}

.mail-to:hover {
  text-decoration: underline;
}

.phone-number {
  color: #ffffff;
  text-decoration: none;
  
  font-size: 15px;
}

.footer-full-width {
  width: 100%;
  background: #BA9C78;
}

/* Copyright area */
.copyright-area {
  background: #BA9C78;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 0 10px;
}

.footer-copyright {
  text-align: left;
}

.copyright-text {
  display: inline-block;
}

.footer-menu-column {
  text-align: right;
}

.footer-menu {
  display: flex;
  justify-content: flex-end;
}

.footer-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li a {
  font-size: 14px;
  color: #ffffff;
}

.footer-menu li:hover a {
  color: #ffffff;
}

.footer a[href^="tel"] {
  color: white;
  text-decoration: none; /* Entfernt ggf. eine Unterstreichung */
}
/* Verhindert das automatische Link-Styling von Telefonnummern auf Mobilgeräten */
a[href^="tel"] {
  color: white;       /* Setzt die Farbe auf Weiß */
  text-decoration: none; /* Entfernt die Unterstreichung */
}

/* Optional: Stellt sicher, dass das Styling auch bei Hover, Focus oder Active angewendet wird */
a[href^="tel"]:hover,
a[href^="tel"]:focus,
a[href^="tel"]:active {
  color: white;
  text-decoration: none;
}
