/* Base styles */
body {
  overflow-x: hidden;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Navigation container */
.menu-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #f4a73e; /* orange navbar background */
  color: #ffffff;
  padding: 6px 16px; /* thinner navbar */
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

/* Logo */
.menu-logo {
  line-height: 0;
  margin: 0 20px;
}

.menu-logo img {
  max-height: 70px;   /* larger logo */
  max-width: 180px;
  flex-shrink: 0;
}

/* Navigation links */
.menu-container a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;           /* bold to match logo */
  font-size: 18px;            /* clean readable size */
  letter-spacing: 0.3px;      /* match logo spacing */
}

.menu-container a:hover {
  color: #002f6c;
}

/* Burger toggle */
.menu-container input {
  display: block;
  width: 35px;
  height: 25px;
  margin: 0;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

.menu-container span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.menu-container span:first-child {
  transform-origin: 0% 0%;
}

.menu-container span:nth-child(3) {
  transform-origin: 0% 100%;
}

.menu-container input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(3px,-1px);
  background: #232323;
}

.menu-container input:checked ~ span:nth-child(4) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.menu-container input:checked ~ span:nth-child(3) {
  transform: rotate(-45deg) translate(-5px,11px);
}

/* Menu list styles */
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  padding: 6px 0;
  font-size: 18px;
}

/* Mobile styles */
@media only screen and (max-width: 767px) {
  .menu-container {
    flex-direction: column;
    align-items: flex-end;
  }

  .menu-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-logo img {
    max-height: 60px;
  }

  .menu {
    position: absolute;
    box-sizing: border-box;
    width: 300px;
    right: -300px;
    top: 0;
    margin: -20px;
    padding: 75px 50px 50px;
    background: #cdcdcd;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translateX(0%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }

  .menu-container input:checked ~ .menu {
    transform: translateX(-100%);
  }
}

/* Desktop styles */
@media only screen and (min-width: 768px) {
  .menu-container {
    width: 100%;
  }

  .menu-container input {
    display: none;
  }

  .menu-container span {
    display: none;
  }

  .menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .menu ul {
    display: flex;
  }

  .menu li {
    padding: 0 20px;
  }
/* ===== SCHOOL SHOP SECTION ===== */
.school-shop-box {
  text-align: center;
  margin: 40px auto;
  font-family: 'Poppins', sans-serif;
  padding: 20px;
}

.school-shop-box h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

.school-shop-box select {
  padding: 12px 16px;
  font-size: 16px;
  width: 280px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
}

.school-shop-box button {
  background-color: #f3a847;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.school-shop-box button:hover {
  background-color: #d68c35;
}

.school-shop-box .note {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

/* ===== BURGER MENU ===== */
.burger {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 3;
}

.burger span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px auto;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* ===== MENU VISIBILITY RULES ===== */

/* Desktop: Show full menu */
@media only screen and (min-width: 768px) {
  .menu {
    display: flex !important;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    background-color: #f4a73e;
    padding: 10px 20px;
  }

  .menu ul {
    display: flex;
  }

  .menu li {
    padding: 0 20px;
  }

  #menu-toggle,
  .burger {
    display: none;
  }
}

/* Mobile: Hide menu unless toggled */
@media only screen and (max-width: 767px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #f4a73e;
    padding: 70px 20px 20px;
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    z-index: 2;
  }

  #menu-toggle:checked + .burger + .menu {
    display: flex;
  }
}



}
