:root {
  --primary-color: #2E7D32;
  /* Light Green / Forest Green */
  --secondary-color: #8A1538;
  /* Maroon / Dark Red */
  --accent-color: #F2A900;
  /* Gold */
  --light-bg: #F8F9FA;
  --dark-text: #333333;
  --white: #FFFFFF;
  /* no scrolling on mobiles  */
  overflow-x: hidden;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark-text);
  background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 0.85rem;
  padding: 5px 0;
}

.top-bar a {
  color: var(--white);
  text-decoration: none;
  margin-left: 15px;
  transition: color 0.3s;
}

.top-bar a:hover {
  color: var(--accent-color);
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--primary-color) !important;
  font-size: 1.5rem;
}

.navbar-brand span {
  color: var(--secondary-color);
}

.nav-link {
  color: var(--primary-color) !important;
  font-weight: 600;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--secondary-color) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary-custom {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn-primary-custom:hover {
  background-color: #70112D;
  color: var(--white);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-accent:hover {
  background-color: #D99700;
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 33, 71, 0.75), rgba(0, 33, 71, 0.75)), url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-accent-line {
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin-bottom: 20px;
}

/* Featured Links / Quick Actions */
.quick-action-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border-top: 4px solid var(--secondary-color);
  display: block;
  text-decoration: none;
  color: inherit;
}

.quick-action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  color: inherit;
}

.card-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.quick-action-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.quick-action-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* News Cards */
.news-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 5px 15px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 0.85rem;
}

.news-card .card-body {
  padding: 20px;
}

.news-card .card-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.read-more {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.read-more:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #ccc;
  padding: 60px 0 20px;
}

footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

footer h4::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.85rem;
  text-align: center;
}