/* PAGE SCOPE */
.forum-page {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, #f5f7fa, #e6eef7);
  color: #1c1c1c;
}

/* HERO FIX (important for consistency) */
.forum-page .hero {
  height: 60vh;
}

/* TEXT SECTIONS */
.forum-page .text-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.forum-page .text-section h2 {
  color: #062a5e;
  font-size: 22px;
  margin-bottom: 10px;
  position: relative;
}

/* underline */
.forum-page .text-section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #062a5e, #b8860b);
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}

.forum-page .text-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-top: 10px;
}

/* HIGHLIGHT SECTION */
.forum-page .highlight-section {
  background: #062a5e;
  color: white;
  padding: 70px 20px;
  text-align: center;
  margin-top: 60px;
}

.forum-page .highlight-section h2 {
  font-size: 26px;
  margin-top: 20px;
}

.forum-page .highlight-section p {
  max-width: 800px;
  margin: 10px auto 30px;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
}

/* FOOTER NOTE */
.forum-page .footer-note {
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  background: #0d1b2a;
  color: rgba(255,255,255,0.8);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .forum-page .hero {
    height: 40vh;
  }

  .forum-page .text-section {
    margin: 35px auto;
    padding: 0 15px;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 40px;
  max-width: 1100px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}
/* GALLERY GRID */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 40px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* LIGHTBOX BACKGROUND */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);

  justify-content: center;
  align-items: center;
}

/* IMAGE INSIDE */
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
/* =========================
   MOBILE NAVBAR FIX
========================= */
