/* ============================================
   FOOTER VISIBILITY
   ============================================ */
@font-face {
  font-family: 'Merriweather';
  src: url('fonts/MerriweatherSans-Italic-VariableFont_wght.woff2') format('woff2'),
       url('fonts/MerriweatherSans-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.footer-desktop {
  display: none;
}
.footer-mobile {
  display: none;
  font-family: 'MerriweatherLocal', serif;
}

@media (min-width: 1025px) {
  .footer-desktop {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .footer-mobile {
    display: block;
  }
}

/* ============================================
   MOBILE FOOTER
   ============================================ */
.footer-mobile {
  background-color: #F0ECE2;
  font-family: inherit;
  margin-top: 3rem;
}

.fm-inner {
  display: flex;
  flex-direction: column;
}

/* Stay Connected */
.fm-social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 8px;
}

.fm-label {
  color: #8a6139;
  font-size: 1.1rem;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.fm-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1.25rem;
}

.fm-icons a {
  width: 52px;
  height: 52px;
  background-color: #7e4f35;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, transform 0.2s;
  text-decoration: none;
}

.fm-icons a:hover {
  background-color: #f3f3f3;
  transform: scale(1.1);
}

.fm-icons a svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  transition: fill 0.2s;
}

.fm-icons a.icon-facebook:hover svg  { fill: #3b5998; }
.fm-icons a.icon-instagram:hover svg { fill: #E1306C; }
.fm-icons a.icon-tripadvisor:hover svg { fill: #20d500; }

/* Divider */
.fm-divider {
  width: 90%;
  height: 1px;
  background-color: #7e4f35;
  margin: 1.25rem auto 0.75rem;
}

/* Nav Links */
.fm-links {
  margin: 0.8rem 7% 0;
}

.fm-links-grid {
  color: #8a6139;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  font-size: .75rem;
  margin-bottom: 1rem;
}

.fm-links-grid a {
  color: inherit;
  text-decoration: none;
}

.fm-links-grid a:hover {
  text-decoration: underline;
}

/* Logo Slider */
.fm-slider-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 1.25rem;
}

.fm-slider-wrap .swiper-slide img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

/* Copyright */
.fm-copyright {
  color: #8a6139;
  text-align: center;
  font-size: 10px;
  margin: 1.5rem 0 1.25rem;
}
