
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--nav-backgroud);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
  }
  
  .navbar-menu {
    display: flex;
  }
  
  .navbar-links {
    display: flex;
    gap: 2rem;;
  }
  
  .navbar-link {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .navbar-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 8px;
  }
  
  .navbar-link:hover {
    color: var(--accent-color);
  }
  
  .navbar-link:hover::after {
    width: 100%;
  }
  
  .navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
  }
  
  .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled {
    background-color: var(--nav-backgroud);
    box-shadow: 8px;
    height: 70px;
  }
  