/* NAVBAR GENERAL */
.navbar {
  position: fixed;
  top: 2.5%;
  left: 3%;
  width: 94%;
  background-color: rgba(250, 248, 235, 0.8);
  border-radius: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 5%;
  z-index: 999;
  min-height: 3.5rem;
  box-shadow: 0 4px 10.9px 0 rgba(0, 0, 0, 0.25);
}

.logo img {
  height: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-blue);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark-brown);
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .navbar {
    min-height: 3.5rem;
  }
  .logo img {
    height: 1.75rem;
  }

  .nav-links {
    position: absolute;
    top: 3.5rem;
    right: 0;
    background: white;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 0;
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--gray-blue);
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    background-color: rgba(250, 248, 235, 0.95);
    border-radius: 1.2rem;
    margin-top: 1rem;
  }

  .menu-toggle {
    display: flex;
  }
}

/*Footer CSS*/
.footer_section {
  background-color: var(--dark-brown);
}
.footer-component {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.footer-component .full-row {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.footer-component .full-row:nth-child(1) {
  column-gap: 4rem;
  row-gap: 2rem;
}
.footer-component a {
  color: white;
  transition: var(--animTransition);
  font-family: "Basis";
  font-weight: 300 !important;
  font-size: var(--fs-4);
  text-decoration: underline;
}
.footer-component a:hover {
  opacity: 0.3;
}
.footer-component .full-row:nth-child(2) {
  column-gap: 3rem;
  margin-bottom: 2rem;
}
.footer-component .full-row:nth-child(2) a {
  height: 2rem;
  display: block;
}
.footer-component .full-row:nth-child(2) img {
  height: 100%;
}
.footer-component p {
  color: white;
  font-size: var(--fs-2);
  font-family: "Basis";
  font-weight: 400;
}

@media (max-width: 768px) {
  .footer-component .full-row:nth-child(1) {
    flex-direction: column !important;
    margin-bottom: 1rem;
  }
  .footer-component .full-row:nth-child(3) {
    border-top: 1px solid #faf9ed25;
    padding-top: 2rem;
  }
}
