/* ========== NAV.CSS – КАК НА ОСТАЛЬНЫХ СТРАНИЦАХ ========== */
:root {
  --tiffany-blue: #0ABAB5;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(254, 254, 254, 0.95);
  padding: 16px 0;
}

.nav-link {
  position: relative;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--tiffany-blue);
  transition: width 0.3s ease;
}

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

.nav-link.active {
  color: var(--tiffany-blue);
}

@media (min-width: 1282px) {
  #mobile-menu {
      display: none !important;
  }
  .hero-bg {
    background-attachment: scroll;
  }
  
}
@media (max-width: 1282px) {
  .sticky-nav {
   #hamburger {
      display: block;
    }
  
    .md\:flex {
      display: none;
    }
  }
}