/* =========================
   Global Styles
   ========================= */
body {
  margin: 0;
  padding: 0;
  font-family: Verdana, Arial, sans-serif;
  background: #1c1e22;
  color: #d9d9d9;
}

/* =========================
   Default Header (non-home pages)
   ========================= */
header {
  text-align: center;
  padding: 28px 15px;
  background: #dcdfe3;       /* lighter header for logo visibility */
  border-bottom: 2px solid #b7b9bc;
}

.site-logo {
  height: 90px;
  display: block;
  margin: 0 auto 16px auto;
  max-width: 100%;
}

/* =========================
   Home Page Header (enhanced)
   Use on index.html: <header class="home-header">
   ========================= */
.home-header {
  background: #f2f2f4;       /* slightly lighter background so logo pops */
  border-bottom: 2px solid #cccccc;
  padding: 40px 0;
}

.home-header .header-inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Optional enhancement included:
   white panel behind logo + shadow for extra contrast */
.home-header .site-logo {
  height: 110px;
  background: #ffffff;
  padding: 18px 26px;
  border-radius: 6px;
  display: inline-block;
  margin: 0 auto 18px auto;
  max-width: 100%;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.3));
}

/* =========================
   Navigation
   ========================= */
nav a {
  margin: 0 14px;
  text-decoration: none;
  font-weight: bold;
  color: #003366;            /* deep navy for text */
  transition: 0.25s ease;
  font-size: 16px;
}

nav a:hover {
  color: #ff6a00;            /* orange accent on hover */
}

/* =========================
   Hero Section
   ========================= */
.hero {
  text-align: center;
  padding: 60px 15px 40px;
  background: linear-gradient(to bottom, #1c1e22, #24262b);
}

.hero h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 18px;
}

.hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: #d1d1d1;
}

/* =========================
   Intro / Content Sections
   ========================= */
.intro {
  padding: 40px 20px;
  text-align: center;
}

.intro h2 {
  font-size: 30px;
  color: #77aaff;
  margin-bottom: 12px;
}

.intro p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* =========================
   Footer
   ========================= */
footer {
  padding: 30px 15px;
  text-align: center;
  font-size: 14px;
  background: #0f1215;
  border-top: 2px solid #2d2f33;
}

footer a {
  color: #77aaff;
  text-decoration: none;
  transition: 0.25s;
  font-size: 14px;
}

footer a:hover {
  color: #ff6a00;
}
