/* ================= RESET ================= */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #222;
  background: #f8f9fb;
}

/* ================= PAGE WRAPPER (FOOTER FIX) ================= */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #0a4fa3;
}

.nav-inner {
  max-width: 1100px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  min-height: 70px; 
  justify-content: space-between;
}

.logo img {
  height: 70px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 22px;
  font-weight: 500;
}

.main-nav a:hover {
  text-decoration: underline;
}
.logo {
  display: flex;
  align-items: center;   /* ✅ THIS is the missing piece */
}
.logo img {
  height: 70px;
  display: block;        /* ✅ critical */
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  height: 100%;
}

.site-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
/* Mobile */
@media (max-width: 768px) {
  .site-title {
    font-size: 16px;
    align-items: center;
   
  }
   .logo img {
    height: 48px;
  }
  .main-nav {
    display: none;
  }
}
/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #1c6fd5, #0a4fa3);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* ================= BUTTON ================= */
.btn {
  background: #ff9800;
  color: #fff;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: #e68900;
}

/* ================= ICON MENU ================= */
.icon-menu {
  max-width: 1100px;
  margin: 30px auto;
  display: flex;
  gap: 15px;
  padding: 0 20px;
}

.icon-menu a {
  flex: 1;
  background: #fff;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  color: #0a4fa3;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* ================= CARDS ================= */
.cards {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

/* ================= ACHIEVEMENTS ================= */
.intro {
  font-size: 18px;
  margin-bottom: 25px;
}

.achievement-body {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.rich-text p {
  text-indent: 2em;
}

/* ================= CONTACT FORM ================= */
.contact-wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.contact-card {
  width: 100%;
  max-width: 520px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.contact-card h2 {
  text-align: center;
  margin-bottom: 25px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.contact-card textarea {
  resize: vertical;
}

.captcha-box {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.btn-submit {
  background: #ff9800;
  border: none;
  color: #fff;
  padding: 12px;
  width: 100%;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.btn-submit:hover {
  background: #e68900;
}
/* ========================RTI Page========== */
.page-container {
  max-width: 800px;      /* optional, keeps content readable */
  margin: 0 auto;        /* center horizontally */
  text-align: left;    /* center the title, links, and emojis */
  padding: 20px;
}

.rti-documents {
  list-style: none;       /* remove default bullets */
  padding: 0;
  margin: 20px 0;        /* space above/below the list */
}

.rti-documents li {
  margin: 10px 0;        /* spacing between items */
  font-size: 18px;
  /* display: inline-block;   */
  /* keeps items centered nicely */
}

/* ================= FOOTER ================= */
.site-footer {
  background: #0a4fa3;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.gallery-grid,
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.event-card,
.photo-item {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 10px;
}

.caption {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 28px;
  }

  .icon-menu {
    flex-direction: column;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
  }
}
