/* Custom Navigation Styles for Demi Huizenga website */

/* Header and Main Navigation */
.main-header {
  width: 100%;
  background-color: black;
  position: sticky !important; /* Override any fixed positioning */
  top: 0;
  z-index: 1000;
}

.header-logo {
  max-height: 4.5rem;
}

/* Desktop Navigation Styles */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 1rem;
}

.nav-link {
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  position: relative;
  font-family: "Bertioga sans fat";
  transition: color 0.3s;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #b8b6ec;
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}

.nav-link:hover {
  color: #b8b6ec;
}

.nav-link:hover:after, .nav-link.active:after {
  width: 100%;
}

.nav-link.active {
  color: #b8b6ec;
}

/* Mobile Navigation Styles */
.menu-toggle {
  width: 30px;
  height: 25px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 1rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #b8b6ec;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0px;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  top: 20px;
}

.menu-toggle.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-toggle.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: #f0f0f0;
  z-index: 1000;
  transition: right 0.4s ease-in-out;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-content {
  padding: 6rem 2rem 2rem;
  height: 100%;
  overflow-y: auto;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-item {
  margin-bottom: 1.5rem;
}

.mobile-link {
  color: #2b2b2b;
  font-size: 1.5rem;
  text-decoration: none;
  font-family: "Bertioga sans fat";
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.mobile-link:hover, .mobile-link.active {
  color: #b8b6ec;
}

/* Overlay and body scroll lock */
body.menu-open {
  overflow: hidden;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-link {
    text-align: center;
    margin: 0.3rem 0;
  }
  
  .nav-link:after {
    bottom: -3px;
  }
}