/* Reset body margin */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* ===================== */
/* === Main Header === */
/* ===================== */
/* Main Header Layout */
.main-header {
  width: 100%;
  background-color: #343a40;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

/* Logo text */
.main-header .logo {
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px; /* Gap between ☰ and text */
  color: white;
  text-decoration: none;
}

/* Hide menu-toggle on desktop */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
}

/* Show ☰ and move logo next to it in mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-header {
    justify-content: flex-start; /* align ☰ and text */
    gap: 10px;
  }
}
