@charset "UTF-8";
/* CSS Document */
/* HAMBURGER BUTTON (we’ll hide it on large screens) */
 .hamburger {
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
      display: none; /* Hidden by default for desktop */
    }


 /* MOBILE MENU */
    .mobile-menu {
      display: none; /* Hidden by default */
      position: fixed;
      top: 0;
      left: -250px; /* Hidden off-screen */
      width: 250px;
      height: 100%;
      background-color: #000;
      color: #fff;
      z-index: 1000;
      transition: left 0.3s ease;
    }
 .mobile-menu.show-menu {
      left: 0;
    }

    .mobile-menu ul {
      list-style: none;
      padding: 1rem;
    }

    .mobile-menu li {
      margin: 1rem 0;
    }

    .mobile-menu a {
      color: #fff;
      text-decoration: none;
    }

