/* ===========================
   HEADER & NAVIGATION
   =========================== */

.site-header {
  background: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 10;
  padding: 0.3rem 0;
}

/* Logo */
.logo {
  height: 140px;
  width: auto;
  display: block;
}

:root {
  --bg: #f9fafb;
  --card: #ffffff;
  --border: #d1d5db;
  --text: #1f2937;
  --muted: #6b7280;

  --accent: #ccc6c6;   /* gold/yellow highlight */
  --accent-2: #858282;  /* lighter gold */
}

@media (max-width: 768px) {
  .logo {
    height: 100px;
  }
}

/* Header layout */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

/* Desktop nav */
.site-nav .nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav .nav-list li {
  display: inline-block;
}

.site-nav .nav-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 2rem;
  line-height: 50px;
  padding: 0.5rem 0;
  transition: color 0.2s, border-bottom 0.2s;
}

.site-nav .nav-list a:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.site-nav .nav-list a.active {
  color: var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
}

/* Tablet nav size adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .site-nav .nav-list a {
    font-size: 1.4rem;
    line-height: 60px;
  }

  .logo {
    height: 100px;
  }
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  font-size: 2.8rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  margin-left: auto;
}

@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 0.6rem;
    display: none;
    width: 220px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    z-index: 999;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav .nav-list {
    flex-direction: column;
    margin: 0;
    padding: 1rem;
    gap: 0.8rem;
  }

  .site-nav .nav-list a {
    font-size: 1.2rem;
    line-height: 1.4;
    padding: 0.5rem 0;
  }

  .nav-toggle {
    display: block;
  }
}

/* Banner mobile */
@media (max-width: 820px) {
  .banner-overlay {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    height: 100%;
  }

  .banner {
    height: calc(100vh - 170px);
    margin-top: 60px;
  }

  .banner-text {
    margin-bottom: 1rem;
  }

  .banner-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .banner-text p {
    font-size: 1.1rem;
  }

  .banner-image {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: 3;
  }

  .banner-image img {
    max-height: 330px;
    width: auto;
  }
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: auto;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

.footer-inner p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

/* ===========================
   ANNOUNCEMENTS
   =========================== */

.highlights-row {
  background: var(--card);
  padding: 0rem 1rem;
  color: var(--text);
}

.highlights-row h2 {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  color: #000000;
}

.highlights-row .col-md-9 h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.highlights-row .col-md-9 p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.highlights-row .col-md-9 img {
  border-radius: 0.6rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}

.highlights-row .col-md-9 img:hover {
  transform: scale(1.02);
}

.widget-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.widget-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.widget-box ul {
  margin: 0;
  padding: 0;
}

.widget-box li {
  margin-bottom: 1rem;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 0.5rem;
}

.widget-box li:last-child {
  border-bottom: none;
}

.text-area a {
  font-weight: 600;
  text-decoration: none;
}

.text-area a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.text-area span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about-section {
  padding: 3rem;
  margin-top: 5rem;
  margin-bottom: 1.5rem;
  background: var(--bg);
  color: var(--text);
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--accent);
}

.about-section h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
}

.about-section p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.about-section ul {
  list-style: disc inside;
  margin-left: 1.5rem;
  font-size: 1.5rem;
}

.about-section ul li {
  margin-bottom: 1.5rem;
}

.about-section a {
  font-weight: 600;
  text-decoration: none;
}

.about-section a:hover {
  text-decoration: underline;
}

/* ===========================
   INNER BANNER (shared)
   =========================== */

.inner-banner {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 4rem 0 2rem;
  margin-top: 80px;
  height: 200px;
}

.inner-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.5));
}

.inner-banner .container { position: relative; z-index: 1; height: 80px; }

.inner-banner-heading h1 {
  margin: 0 0 .25rem 0;
  font-size: 2.4rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

.inner-banner .subtitle {
  margin: 0;
  color: #e0e0e0;
}

.banner-notices {
  background-image: url("../img/banner.jpeg");
  background-size: cover;
  background-position: center;
}

/* Back button */
.breadcrumb-col {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
}

.btn-back {
  display: inline-block;
  color: #fff;
  border: 1px solid rgba(255,255,255,.7);
  padding: .4rem .75rem;
  border-radius: .5rem;
  text-decoration: none;
  backdrop-filter: blur(2px);
}

.btn-back:hover {
  background: rgba(255,255,255,.1);
}

/* ===========================
   BANNER CHANGES
   =========================== */

.banner {
  position: relative;
  width: 100%;
  height: calc(45vh - 170px);
  margin-top: 80px;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/banner.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  z-index: 1;
}

.banner-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-text {
  padding: 1rem 2rem;
}

.banner-text h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 3px 3px 12px rgba(0,0,0,0.85);
}

.banner-text p {
  font-size: 1.5rem;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.75);
}

/* Responsive */
@media (max-width: 820px) {
  .banner {
    height: calc(45vh - 120px);
    margin-top: 60px;
  }

  .banner-text h1 {
    font-size: 2.0rem;
    margin-bottom: 1rem;
  }

  .banner-text p {
    font-size: 1.1rem;
  }
}

/* ===========================
   EMBEDDED VIDEO
   =========================== */

.video-frame {
  position: relative;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #000;
  border-radius: .6rem;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 1400px) {
    .container {
        width: 1370px;
    }
}

/* Footer socials */
.site-footer .social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer .social-links a {
  font-size: 1.8rem;
  color: #fff;
  transition: color 0.3s, transform 0.2s;
}

.site-footer .social-links a:hover {
  color: var(--accent);
  transform: scale(1.2);
}


/* ===========================
   ANNOUNCEMENT CARDS
   =========================== */

.announcements-row {
  background: var(--bg);
  padding: 1rem 1rem;
  border-top: 1px solid var(--border);
  color: var(--text);
}

.announcement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.announcement-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.announcement-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.8rem 0;
  color: var(--text);
}

.announcement-card p {
  flex: 1;
  font-size: 0.95rem;
  color: var(--muted);
}

.announcement-card .meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.announcement-card .btn {
  margin-top: 1rem;
  align-self: flex-start;
  background: var(--accent-2);
  color: #fff;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.announcement-card .btn:hover {
  background: var(--accent);
  color: #494545;
}
/*news section*/
/*news/announcements*/
.news-list-section {
  padding: 3rem 1rem;
  background: #fff; 
}

.news-list-container {
  max-width: 1000px;
  margin: 0 auto;
}

.news-list-heading {
  font-size: 2.4rem;   
  margin-bottom: 2rem;
  color: #222;
  text-align: center;
  font-weight: 700;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list-item {
  border-bottom: 1px solid #ddd;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.news-list-date {
  font-size: 1rem;  
  font-weight: 500;
  color: #666;
}

.news-list-title {
  font-size: 1.3rem;  
  font-weight: 600;
  line-height: 1.6;   
  color: #01468a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-list-title:hover {
  color: #02315a;
  text-decoration: underline;
}

.news-list-download {
  align-self: flex-start;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;  
  border-radius: 0.4rem;
  background: #01468a;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.news-list-download:hover {
  background: #02315a;
}
.news-pagination {
  text-align: center;
  margin-top: 2rem;
}

.news-pagination a {
  margin: 0 5px;
  padding: 0.5rem 0.9rem;
  border-radius: 0.4rem;
  text-decoration: none;
  background: #f0f0f0;
  color: #333;
  transition: background 0.3s;
}

.news-pagination a.active {
  background: #01468a;
  color: #fff;
}

.news-pagination a:hover {
  background: #ddd;
}

