/* ==========================
   PREMIUM SCHOOL HEADER – STANDARD (MATCH HOME / ABOUT)
   ========================== */

/* ==========================
   WRAPPER
   ========================== */
.premium-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #dbe2ee;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.05);
}

/* ==========================
   TOP ROW (LOGOS + TITLE)
   ========================== */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;

   background: #d6e4ff;            /* light blue */
  border-bottom: 1px solid #cfdfff;  /* clear separation */
}



.logo-box {
  width: 90px;
  height: 90px;

  background: transparent;   /* ✅ remove background */
  box-shadow: none;          /* ✅ remove any shadow */
  border: none;              /* ✅ remove border */
  padding: 0;                /* ✅ no spacing box */
}

.school-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;   /* ✅ just in case */
}


/* Title */
.school-title-wrap {
  flex: 1;
  text-align: center;
  line-height: 1.15;
}

.trust-name {
  font-size: 20px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 4px;
}

.school-title {
  font-size: 28px;
  font-weight: 800;
  color: #003366;
}

/* ==========================
   NAV BAR – DESKTOP
   ========================== */
.nav-bar {
  background: #f5f9ff;               /* different shade */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
}



/* All links */
.nav-bar a {
  color: #003366;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  height: 44px;
  border-radius: 8px;
  transition: 0.25s ease;
  position: relative;
}

/* Hover underline */
.nav-bar a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ffcc33;
  left: 0;
  bottom: -6px;
}

/* Active page */
.nav-link.active {
  background: #ffcc33;
  color: #000;
  font-weight: 700;
}

/* Monthly Activities highlight */
.highlight {
  background: #ffcc33;
  color: #000 !important;
  font-weight: 700;
  white-space: nowrap;
}

/* ==========================
   BUTTON ROW (SECOND LINE)
   ========================== */
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
}


/* Contact button */
.contact-btn {
  background: #45b27a;
}
.contact-btn:hover {
  background: #3aa06c;
}

/* Donate button */
.donate-btn {
  background: #e65858;
}
.donate-btn:hover {
  background: #c94545;
}

/* ==========================
   HAMBURGER MENU
   ========================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 15px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #003366;
  border-radius: 3px;
  transition: 0.3s;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================
   MOBILE VIEW
   ========================== */
@media (max-width: 900px) {

  .header-top {
    padding: 8px 16px;
  }

  .logo-box {
    width: 60px;
    height: 60px;
  }

  .trust-name {
    font-size: 16px;
  }

  .school-title {
    font-size: 20px;
  }

  .hamburger {
    display: flex;
  }

  /* Hide nav by default */
  .nav-bar {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    background: #ffffff;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  /* Show on toggle */
  .nav-bar.show-menu {
    display: flex;
  }

  .nav-bar a {
    width: 90%;
    margin: auto;
  }

  .nav-btn {
    margin-top: 0;
  }
}
