body.no-scroll {
  overflow: hidden;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  color: var(--bs-secondary);
  margin: 0 7%;
}

.group-info {
  position: relative;
  left: 15px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }

  .group-info {
    left: 0;
  }

  .footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 576px) {
  .footer h4 {
    font-size: 20px !important;
  }

  .footer .nav-link {
    font-size: 14px !important;
  }
}

/* Overlay search */
#search-overlay {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 1050;
  display: none;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

#search-overlay.active {
  display: block;
  transform: translateX(0);
  opacity: 1;
}

#search-overlay-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(var(--bs-secondary-rgb), 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card-search {
  border: 2px solid var(--bs-secondary);
  border-radius: 16px;
  background-color: white;
  display: flex;
  width: 820px;
}

.card-search input {
  flex: 1;
  border-radius: 16px 0 0 16px;
  min-width: 0;
  outline: none !important;
  border: none !important;
  box-shadow: none;
}

.card-search input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.card-search > div {
  display: flex;
  gap: 0.5rem;
}

@media screen and (max-width: 992px) {
  .card-search {
    width: 90%;
    margin: 0 auto;
    min-width: 0;
  }

  .card-search input {
    border-radius: 16px 16px 0 0;
    width: 100%;
  }
}

/* Overlay menu */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(var(--bs-secondary-rgb), 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1050;
  gap: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

#menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

#closeMenu {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1100;
  background-color: transparent !important;
  border: none;
  cursor: pointer;
}

#closeMenu svg {
  width: 32px;
  height: 32px;
  color: white !important;
}
