/* NAVBAR GENERAL */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--deep-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 5%;
  z-index: 999;
  min-height: 4.5rem;
}

.navbar a {
  display: block;
}

.logo img {
  width: 20rem;
}

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

.nav-links a {
  text-decoration: none;
}

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

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--light-blue);
  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 {
    width: 15rem;
  }

  .nav-links {
    position: absolute;
    top: 3.5rem;
    right: 0;
    background: var(--deep-blue);
    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;
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }
}

/*! Footer*/
.footer_section {
  background-color: var(--deep-blue);
}
.footer-links {
  display: flex;
  column-gap: 4rem;
  row-gap: 2rem;
  margin-bottom: 3rem;
}
.social-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer_section hr {
  width: 100%;
  height: 1px;
  background-color: var(--light-blue);
  border: none !important;
  opacity: 0.2;
  margin-bottom: 1.5rem;
}

.footer_section .padding-section {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

@media (max-width: 500px) {
  .footer-links {
    display: flex;
    column-gap: 4rem;
    row-gap: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
