/* ------------------------------ */
/* RESET & BASE STYLES           */
/* ------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Use Montserrat throughout for a cohesive modern feel */
body {
  font-family: "Montserrat", sans-serif;
  background-color: #fafafa; /* light background for a clean look */
  color: #333;              /* main text color */
  line-height: 1.6;
}

/* Links reset / styling */
a {
  text-decoration: none;
  color: inherit;
}

/* ------------------------------ */
/* HEADER & NAVIGATION           */
/* ------------------------------ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111; /* near-black for a sleek top bar */
  padding: 1rem 2rem;
}

/* Minimal "logo" styling */
.logo {
  font-family: "Courier New", Courier, monospace; /* old terminal style */
  color: #f0f0f0; 
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: #ddd;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff; /* highlight on hover & active link */
}

/* ------------------------------ */
/* NOTICE BANNER                  */
/* ------------------------------ */
.notice-banner {
  background-color: #333;
  color: #eee;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

/* ------------------------------ */
/* HERO SLAB                      */
/* ------------------------------ */
.hero-slab {
  background-color: #111; /* consistent with header */
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}

/* Red accent line near bottom edge (optional) */
.hero-slab::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: red;
  margin: 2rem auto 0 auto;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.2;
}

/* ------------------------------ */
/* MAIN CONTENT SECTION           */
/* ------------------------------ */
.content-section {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  padding: 1rem 2rem;
}

.content-section h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #111;
}

.content-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.content-section li {
  margin-bottom: 0.5rem;
}

/* Horizontal rule styling (just to separate sections nicely) */
.content-section hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2rem 0;
}

/* ------------------------------ */
/* FOOTER                         */
/* ------------------------------ */
.site-footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* ------------------------------ */
/* RESPONSIVE DESIGN              */
/* ------------------------------ */
@media (max-width: 600px) {
  .main-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}
