.oak-navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.navbar-container {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;         /* ✅ Ensures full width */
  max-width: none;     /* ✅ Remove fixed width */
  margin: 0;           /* ✅ Remove center alignment */
}

.oak-logo img {
  max-height: 70px;
}

.menu-toggle {
  font-size: 26px;
  background: none;
  border: none;
  display: none;
  cursor: pointer;
}

.oak-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.oak-menu li a {
  text-decoration: none;
  font-weight: 500;
  color: #2e2e2e;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background-color 0.6s ease, color 0.3s ease;
  display: inline-block;
}

.oak-menu a:hover,
.oak-menu a.active {
  background-color: #ba7c4d; /* Light pink */
  color: #b10062;
}

.oak-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.oak-icons a {
  font-size: 20px;
  color: #333;
}

/* Responsive - Mobile View */
@media (max-width: 991px) {
  .navbar-container {
    flex-wrap: wrap;
    background: #fce4ef;
  }

  .menu-toggle {
    display: block;
  }

  .oak-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 15px 0;
  }
  .oak-menu a { 
    color: #000 !important;
  }

  .oak-menu.show {
    display: flex;
  }

  .oak-menu li {
    text-align: center;
    padding: 10px 0;
  }

  .oak-icons {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

.mobileHide { display: inline;}
		   /* Smartphone Portrait and Landscape */
		   @media only screen
		   and (min-device-width : 320px)
		   and (max-device-width : 480px){  .mobileHide { display: none;}}
		   
		   .systemHide { display: inline;}
		   /* Smartphone Portrait and Landscape */
		   @media only screen
		   and (min-device-width : 960px)
		   and (max-device-width : 3600px){  .systemHide { display: none;}}

.mobile-bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 0;
  border-top: 1px solid #ccc;
  z-index: 999;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-nav a {
  text-align: center;
  font-size: 12px;
  color: #444;
  text-decoration: none;
  flex: 1;
}

.mobile-bottom-nav a i {
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
}

/* Hide on desktop */
@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none;
  }
}