body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.header-top {
  background: #444;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  max-height: 50px;
}

/* Hamburger (dash) */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
	margin-right: 50px;
}

/* Navigation Menu */
.menu {
  background: #333;
  padding: 0 20px;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu li a {
  color: white;
  text-decoration: none;
  padding: 15px;
  display: block;
}

/* Sticky menu on desktop */

  .sticky-menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }


/* Close Button in Mobile Menu */
.close-btn {
  display: none;
  font-size: 28px;
  color: white;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  z-index: 2000;
}

/* ========== Mobile Styles ========== */
@media (max-width: 768px) {
	
      .header-top {
        position: fixed;
        top: 0;
        z-index: 100;
		  width:100%;
      }	
	
	
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background: #333;
    flex-direction: column;
    transition: right 0.3s ease;
    padding-top: 60px;
    z-index: 1500;
  }

  .menu ul {
    flex-direction: column;
  }

  .menu li a {
    padding: 15px 20px;
  }

  .menu.open {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .close-btn {
    display: block;
  }

  /* On mobile: menu should not stick on scroll */
  .menu.sticky-menu {
    position: fixed;
    right: -100%;
  }
}
