nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: white;
    padding: 10px 0;
  }

  .nav-logo {
    margin-right: auto;
    background-image: url("/images/owl.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
  }
  
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: auto;
    background-color: white;
  }
  
  footer ul {
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  footer ul li {
    display: inline;
    padding: 0 10px;
  }
  
  .footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  nav .nav-wrapper {
    margin: 0 auto;
    max-width: 1024px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
    padding: 0 20px;
  }
  
  .nav-logo {
    justify-self: start;
  }
  
  nav .nav-wrapper > ul {
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: center;
    grid-column: 2;
  }
  
  nav .nav-wrapper > ul li {
    display: inline;
    text-transform: uppercase;
  }
  
  nav .nav-wrapper > ul li a {
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    display: inline-block;
  }

  .hamburger-menu {
    justify-self: end;
    grid-column: 3;
    display: none;
  }

  @media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    .nav-wrapper .regular-menu {
      visibility: hidden; /* Added more specific selector and !important if needed */
    }
  }

  #menu-toggle {
    display: none;
    padding: 0;
  }

  .menu-button {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    padding: 0;
  }

  .menu-button span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
  }

    .menu-button {
        display: flex;
        position: absolute; /* Changed from fixed to absolute */
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-button span {
        background-color: black; /* Changed from white to match your color scheme */
    }



    .hamburger-menu ul.menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        list-style-type: none;
        padding: 0;
    }

    #menu-toggle:checked ~ ul.menu {
        right: 0;
    }

    #menu-toggle:checked ~ .menu-button span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    #menu-toggle:checked ~ .menu-button span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .menu-button span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hamburger-menu ul.menu li {
        width: 100%;
        text-align: center;
    }

    .hamburger-menu ul.menu li a {
        width: 100%;
        padding: 20px;
        display: inline-block;
        text-transform: uppercase;
        font-weight: bold;
    }

