/* ============================================================
   Bohemia Design System — Footer
   ============================================================ */

.footer-container {
  padding: 56px var(--bh-sp-8) var(--bh-sp-8);
  margin: 0 auto;
  max-width: 1200px;
}

.footer-container .inline-color-red {
  color: var(--bh-garnet-300);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--bh-sp-12);
  margin-bottom: var(--bh-sp-12);
}

.footer-logo {
  padding-right: var(--bh-sp-8);
}

.footer-logo img {
  width: 150px;
  border-radius: var(--bh-radius-md);
}

.footer-contact {
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-500);
  line-height: 1.65;
  max-width: 280px;
  margin-top: var(--bh-sp-3);
}

.footer-links {
  display: contents;
}

.footer-column .h5 {
  margin-bottom: var(--bh-sp-4);
  font-size: var(--bh-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bh-stone-400);
  font-family: var(--bh-font-body);
}

.footer-column div.h5 {
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--bh-font-body);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.footer1-menu-list {
  column-count: 2;
  column-gap: var(--bh-sp-8);
  margin-right: var(--bh-sp-4);
}

.footer-column nav {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--bh-text-sm);
  font-weight: normal;
}

.footer-column li {
  margin-bottom: var(--bh-sp-2);
}

.footer-column a {
  color: var(--bh-stone-400);
  text-decoration: none;
  font-size: var(--bh-text-sm);
  transition: color var(--bh-dur-fast);
}

.footer-column a:hover {
  color: var(--bh-stone-0);
}

/* ----- FOOTER BOTTOM ----- */
.footer-bottom {
  border-top: 1px solid var(--bh-stone-800);
  margin-top: var(--bh-sp-8);
  padding-top: var(--bh-sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-600);
}

.footer-copyright {
  min-width: 290px;
}

.footer-social {
  display: flex;
  gap: var(--bh-sp-3);
}

.footer-social a {
  background-color: var(--bh-stone-800);
  color: var(--bh-stone-400);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--bh-dur-fast);
}

.footer-social a:hover {
  background-color: var(--bh-stone-700);
  color: var(--bh-stone-0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media only screen and (max-width: 768px) {
  .footer-container {
    padding: var(--bh-sp-10) var(--bh-sp-4);
  }

  .single-hotels .footer-container {
    padding-bottom: 90px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--bh-sp-8);
  }
}

@media only screen and (max-width: 480px) {
  ul.footer1-menu-list {
    margin-right: 0;
    column-count: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--bh-sp-1) var(--bh-sp-4);
  }

  ul.footer1-menu-list li {
    margin-bottom: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--bh-sp-6);
    text-align: center;
  }

  .footer-copyright,
  .footer-bottom {
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--bh-sp-3);
  }

  .footer-social {
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: var(--bh-sp-3);
  }

  .footer-logo {
    padding-right: 0;
  }

  .footer-contact {
    max-width: 100%;
  }
}
