/* css/navbar.css */

/* Common styles */
.klb-navbar {
    position: fixed;
    width: 100vw;
    top: 0;
    /*right: 0; */
    z-index: 999;
    transition: background-color 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
  }
  
  .klb-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1100px;
  }
  
  .klb-logo img {
    height: 40px;
    display: block;
  }
  
  .klb-nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .klb-nav-links li {
    margin-left: 20px;
  }
  
  .klb-nav-links a {
    text-decoration: none;
    color: #636363;
    font-size: 15px;
    font-weight: bold;
  }
  
  /* Desktop navbar floating style */
  .desktop-navbar {
    width: 90vw;
    margin: 40px auto;
    border-radius: 15px;
    padding: 10px 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  
  /* Sticky style when scrolling up */
  .klb-navbar.sticky {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 0;
    margin: 0;
    width: 100%;
  }
  
  /* Mobile navbar */
  .mobile-navbar {
    display: none;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
  }
  
  /* Icons on mobile */
  .klb-icon {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .desktop-navbar {
      display: none;
    }
    .mobile-navbar {
      display: flex;
      background: #fff;
    }
  }
  