.footer-top {
  border-top: 1px solid #acbebb;
  display: flex;
  flex-direction: column;  
  gap: 30px;
  padding: 45px 0 30px 0;
  font-size: 16px;

  @media (min-width: 768px) {
    flex-direction: row;  
  }

  a {
    text-decoration: none;

    &:hover, &:focus {
      text-decoration: underline;
      text-underline-offset: 3px;
    }
  }
}

.footer-top-brand {
  width: 100%;

  @media (min-width: 768px) {
    width: calc(100% / 12 * 5);
  }
}

.footer-top-reservations {
  width: 100%;

  @media (min-width: 768px) {
    width: calc(100% / 12 * 5);
  }
}

.footer-top-socials {
  width: 100%;

  @media (min-width: 768px) {
    text-align: right;
    width: calc(100% / 12 * 2);
  }

  svg {
    width: 35px;
    height: 35px;
  }
}

.footer-top-socials-list {
  display: flex;
  gap: 10px;
  justify-content: flex-start;

  @media (min-width: 768px) {
    justify-content: flex-end;
  }
}

.footer-top-section {
  h2 {
    font-size: 18px; 
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
  }
}

.footer-bottom {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 20px;
  flex-direction: column;
  
  @media (min-width: 768px) {
    flex-direction: row;
    align-items: center;
  }

  a {
    text-decoration: none;

    &:hover, &:focus {
      text-decoration: underline;
    }
  }
}

.footer-bottom-links {
  display: flex;
  gap: 10px 30px;
  justify-content: flex-start;
  flex-direction: column;

  @media (min-width: 768px) {
    flex-direction: row;
  }
}
