.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--main-colour);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
    transition: background-color 0.5s ease;
    z-index: 11;
    padding: 5px 0;
}


.logo-head{
    max-width: 120px;
    display: block;
  }

.nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    padding: 5px 90px;
    margin: 0;
    text-decoration: none;
    font-family: 'Merge One', sans-serif;
    color: white; 
    font-size: 16px;
    letter-spacing: 5px;
}

.nav-list li {
    display: flex; 
    align-items: center;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    position: relative;
    transition: color 0.3s;
  }

  .nav-list a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 100%; 
    height: 2px;
    background: white; 
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center; 
    transition: transform 0.3s ease; 
  }
  

  .nav-list a:hover::after {
    transform: translateX(-50%) scaleX(1); 
  }


  .logo-link::after{
    content: none !important;
  }

  html {
    scroll-behavior: smooth;
}
