/*===================================================== NAV BAR ==========================================================================*/

.toolbar {
  padding: 10px 120px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .toolbar {
    margin-bottom: 0px;
  }
}

.toolbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
}

.full-logo {
  width: auto;
  height: 100px;
  display: block;
}

.nav-menu {
  list-style: none; /* This removes the bullets */
  display: flex; /* Already present in your toolbar-container ul */
  gap: 24px; /* Optional: adds spacing between items */
}

.nav-menu a {
  text-decoration: none;
  color: var(--primary-text-color);
  font-weight: 500;
  font-size: var(--nav-bar-font-size-desktop);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after,
.nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  width: 24px;
  height: 2px;
  background-color: black;
  position: relative;
  transition: background-color 0.3s;
}

/* top & bottom bars, same size */
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: black;
  transition: transform 0.3s;
  transform-origin: center;
}

.hamburger::before {
  transform: translateY(-7px);
}
.hamburger::after {
  transform: translateY(7px);
}

@media (max-width: 992px) {
  .toolbar {
    padding: 10px 80px;
  }
  .full-logo {
    height: 72px;
  }
}

@media (max-width: 768px) {
  .toolbar {
    padding: 10px 20px;
  }

  .nav-menu {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .toolbar-container {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu.active {
    display: flex;
    padding: 10px;
    align-items: right;
    gap: 20px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 10px;
    background-color: white;
    /* order: 3; */
    width: 40%;
    flex-direction: column;
    gap: 0;
    display: none;
    padding: 0;
    margin-top: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 50;
    max-height: calc(100vh);
    overflow-y: auto;
  }
}

/* Mobile styles - improved menu */

/*===================================================== HERO SECTION ==========================================================================*/
