@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --green-dark: #032112;
  --green-main: #074025;
  --coral-main: #f05a24;
  --coral-glow: #ff7443;
  --blue-ocean: #1c5296;
  --gold-accent: #ffb703;
  --bg-light: #f4f6f8;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  text-align: center;
}

/* ================= HERO HEADER ================= */
.hero-header {
  background: radial-gradient(circle at top, #0b5e37 0%, var(--green-dark) 85%);
  color: var(--white);
  padding: 60px 20px 50px;
  text-align: center;
  position: relative;
  box-shadow: inset 0 -10px 20px rgba(0,0,0,0.4);
  border-bottom: 6px solid var(--coral-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.hero-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.0;
  color: var(--white);
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 255, 255, 0.3);
}

.hero-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-top: 5px;
  color: var(--gold-accent);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 183, 3, 0.4);
}

.logo-container {
  display: inline-block;
  margin-top: 10px;
}

.logo-container img {
  height: 240px;
  width: auto;
  filter: drop-shadow(0px 12px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.logo-container img:hover {
  transform: scale(1.05);
}

/* ================= NAVIGATION BAR ================= */
nav {
  background-color: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links li a {
  display: block;
  padding: 18px 24px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: var(--coral-main);
  color: var(--white);
  box-shadow: inset 0 -4px 0 var(--gold-accent);
}

/* ================= CENTERED MAIN CONTENT ================= */
.main-wrapper {
  max-width: 850px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-dark);
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: 1px;
  border-bottom: 4px solid var(--coral-main);
  padding-bottom: 8px;
  display: inline-block;
  text-align: center;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: center;
}

.news-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0,0,0,0.05);
  width: 100%;
  text-align: center;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.news-img {
  width: 100%;
  max-width: 500px;
  height: 260px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.news-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.news-date {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--coral-main);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.news-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 650px;
}

.read-more {
  font-weight: 800;
  color: var(--coral-main);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more:hover {
  color: var(--green-main);
}

/* ================= CENTERED FOOTER ================= */
footer {
  background-color: var(--green-dark);
  color: var(--white);
  padding: 50px 20px 30px;
  margin-top: 60px;
  border-top: 6px solid var(--coral-main);
  text-align: center;
}

.footer-grid {
  max-width: 900px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  text-align: center;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--coral-main);
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-header h1 { font-size: 2.8rem; letter-spacing: 1px; }
  .hero-header h2 { font-size: 1.6rem; letter-spacing: 2px; }
  .news-img { height: 200px; }
  .footer-grid { gap: 30px; }
}