/* File path: /css/navigation.css */
/* Enhanced navigation styling with hamburger menu */
.nav-container-456 {
  width: 100%;
  background: linear-gradient(90deg, var(--bs-pink) 0%, var(--bs-gray-700) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0;
}

.nav-items-456 {
  padding: 15px 0;
  align-items: center;
  position: relative;
}

.logo-456 a {
  font-size: 28px;
  font-weight: 700;
  color: var(--neutral-100);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.logo-456 a:hover {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-menu-456 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-menu-456 li {
  margin: 0;
}

.nav-menu-456 li a.custom-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  color: var(--neutral-100);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu-456 li a.custom-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-menu-456 li a.btn-2 {
  background: var(--secondary);
  border: none;
}

.nav-menu-456 li a.btn-2:hover {
  background: var(--secondary-light);
}

/* Hamburger menu styles */
.hamburger-menu {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--neutral-100);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
  top: 0px;
}

.hamburger-menu span:nth-child(2) {
  top: 10px;
}

.hamburger-menu span:nth-child(3) {
  top: 20px;
}

/* Hamburger animation */
.hamburger-menu.active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger-menu.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* Add space at the top of the body to account for fixed nav */
body {
  padding-top: 80px;
}

/* Adjust static notices to appear below the nav */
.static-notice {
  top: 80px;
}

/* When there are two static notices */
.static-notice:nth-of-type(2) {
  top: 130px; /* Adjust if the height of each notice is different */
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-items-456 {
    padding: 15px 0;
  }
  
  .hamburger-menu {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
  
  .nav-menu-456 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--bs-pink) 0%, var(--bs-gray-700) 100%);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-menu-456.active {
    max-height: 300px; /* Adjust based on your menu's height */
  }
  
  .nav-menu-456 ul {
    flex-direction: column;
    width: 100%;
    padding: 15px;
    gap: 10px;
  }
  
  .nav-menu-456 li {
    width: 100%;
  }
  
  .nav-menu-456 li a.custom-btn {
    display: block;
    width: 100%;
    padding: 10px 15px;
    text-align: center;
  }
  
  /* Increase body padding for mobile */
  body {
    padding-top: 60px;
  }
  
  /* Adjust static notices for mobile */
  .static-notice {
    top: 60px;
  }
  
  .static-notice:nth-of-type(2) {
    top: 110px;
  }
}