/* Footer Component */

.tb-footer-container {
  padding: 3rem 1.5rem;
}

.tb-footer-inner {
  /* max-width controlled by fl-row-fixed-width */
}

/* Columns */

.tb-footer-columns {
  gap: 3rem;
}

.tb-footer-col-logo {
  flex: 0 0 300px;
  width: 300px;
}

.tb-footer-col-contact,
.tb-footer-col-hours {
  flex: 1;
}

/* Logo */

.tb-footer-logo img {
  max-width: 160px;
  height: auto;
}

/* Social icons */

.tb-footer-social {
  gap: 2rem;
}

.tb-footer-social .fl-social-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.tb-footer-social .fa-circle {
  display: none;
}

.tb-footer-social .fa-stack {
  width: auto;
  height: auto;
  line-height: 1;
  font-size: 2rem;
}

.tb-footer-social .fa-stack-1x {
  position: static;
  color: #ffffff;
}

.tb-footer-social .fa-stack:hover .fa-stack-1x {
  color: #9D7F67;
}

/* Headings */

.tb-footer-heading {
  color: #ffffff;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

/* Contact links */

.tb-footer-contact-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.8;
}

.tb-footer-contact-link:hover {
  color: #9D7F67;
}

/* Address */

.tb-footer-address {
  color: #ffffff;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Opening hours */

.tb-footer-hours-content {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.9;
}

.tb-footer-hours-content p {
  color: #ffffff;
  margin-bottom: 0;
}

/* Buttons */

.tb-footer-btn {
  display: inline-block;
  background-color: #1a2e50;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.6rem 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s, border-color 0.2s;
}

.tb-footer-btn:hover {
  background-color: #9D7F67;
  border-color: #9D7F67;
  color: #ffffff;
}

/* Responsive */

@media (max-width: 767px) {
  .tb-footer-col-logo {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .tb-footer-col-contact,
  .tb-footer-col-hours {
    width: 100%;
    text-align: center;
  }

  .tb-footer-address {
    text-align: center;
  }

  .tb-footer-heading {
    font-size: 1.3rem;
  }
}
