/* Override for Home Page - Transparent Header */
body.home .header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

/* Home Page - Scrolled State (White Background) */
body.home .header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid var(--naht-cream) !important;
}

/* Home Page - Logo should be white when transparent */
body.home .header:not(.scrolled) .logo img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.5)) !important;
}

/* Home Page - Nav links should be white when transparent */
body.home .header:not(.scrolled) .nav-link {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Home Page - Hamburger button should be white when transparent */
body.home .header:not(.scrolled) .hamburger-btn {
    color: white !important;
}

body.home .header:not(.scrolled) .hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Home Page - When scrolled, everything becomes dark */
body.home .header.scrolled .logo img {
    filter: none !important;
}

body.home .header.scrolled .nav-link {
    color: var(--naht-dark) !important;
    text-shadow: none;
}

body.home .header.scrolled .hamburger-btn {
    color: var(--naht-dark) !important;
}

body.home .header.scrolled .hamburger-btn:hover {
    background: rgba(166, 147, 124, 0.15) !important;
    color: var(--naht-gold) !important;
}
/* Mobile only (768px and below) */
@media (max-width: 768px) {

  /* Header when burger menu is OPEN on home */
  body.home .header.menu-open {
    background: #EDE9E1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }

  /* Logo color */
  body.home .header.menu-open .logo img {
    filter: none !important;
  }

  /* Nav links color */
  body.home .header.menu-open .nav-link,
  body.home .header.menu-open .mobile-menu-item,
  body.home .header.menu-open .mobile-cta-btn {
    color: #4F4949 !important;
    text-shadow: none !important;
  }

  /* Hamburger button color */
  body.home .header.menu-open .hamburger-btn {
    color: #4F4949 !important;
    background: transparent !important;
  }

  body.home .header.menu-open .hamburger-btn:hover {
    background: rgba(79, 73, 73, 0.08) !important;
  }
}

/*----------------------------------*/
  .mobile-bottom-navbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            border-top: 1px solid rgba(166, 147, 124, 0.2);
            padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom));
            display: flex;
            justify-content: space-around;
            align-items: center;
            display: none;
        }
        @media (max-width: 768px) {
    .mobile-bottom-navbar {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
body {
        padding-bottom: calc(5rem + env(safe-area-inset-bottom));
    }
}
        .mobile-bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            padding: 0.5rem 1rem;
            color: var(--naht-dark);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 0.75rem;
            position: relative;
            flex: 1;
            max-width: 120px;
            cursor: pointer;
        }
        
        .mobile-bottom-nav-item i {
            font-size: 1.25rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .mobile-bottom-nav-item span {
            font-size: 0.75rem;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .mobile-bottom-nav-item:hover,
        .mobile-bottom-nav-item:active {
            color: var(--naht-gold);
            background: rgba(166, 147, 124, 0.1);
        }
        
        .mobile-bottom-nav-item:active {
            transform: scale(0.95);
        }
        
        .mobile-bottom-nav-item.active {
            color: var(--naht-gold);
        }
        
        .mobile-bottom-nav-item.active i {
            transform: translateY(-2px);
        }
        
        .mobile-bottom-nav-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(166, 147, 124, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.4s, height 0.4s;
            z-index: -1;
        }
        
        .mobile-bottom-nav-item:active::before {
            width: 100%;
            height: 100%;
        }
       

        