@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');





.hero-svg-container {
  position: sticky;
  background:#fff;
  width:100%;
  height:100%;
  top:0;
  left:0;
}

@media (max-width: 768px) {
  
}

@media (max-width: 480px) {
  
}



/* Navbar Styling */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
  font-size: 16px; /* Reset massive inherited font size */
  line-height: 1; /* Reset line height */
}

.navbar.scrolled {
  top: 20px;
  left: 50%;
  width: 90%;
  max-width: 800px;
  transform: translateX(-50%);
  border-radius: 50px;
  padding: 12px 35px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

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

.logo {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 2px;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: #ffd3a8;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  z-index: 10000;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(41, 29, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 32px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navbar {
    padding: 15px 20px;
  }
  .navbar.scrolled {
    width: 95%;
  }
}

/* Dark Navbar Clone for Wipe Effect */
.nav-dark-clone {
  pointer-events: none; /* Let clicks pass to the real navbar beneath */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  z-index: 10001; /* Above the real navbar */
  clip-path: inset(100% 0px 0px 0px); /* Hidden by default, animated by GSAP */
  -webkit-clip-path: inset(100% 0px 0px 0px);
}

.nav-dark-clone .logo,
.nav-dark-clone .desktop-nav a {
  color: #432d16 !important;
}

.nav-dark-clone .hamburger span {
  background: #432d16 !important;
}