/* ===== 1. GLOBAL RESET & THEME ===== */
body {
  margin: 0;
  background: #f2f4f7;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}
/* Custom heading color - Bootstrap handles the sizes, we just override color */
h1,
h2,
h3,
h4,
h5 {
  color: #0a4a8a;
}
a {
  text-decoration: none;
  transition: 0.3s;
}

/* ===== 2. HEADER & NAVIGATION (Zero Gap Logic) ===== */
header {
  background-color: #0a4a8a;
  color: white;
}
/* Ensure the logo scales nicely on small screens */
.header-logo {
  height: 70px; /* Default height */
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 576px) {
  .header-logo {
    height: 45px; /* Smaller height for mobile phones */
  }

  /* Optional: Adjust header padding if the logo feels too cramped */
  header .container {
    padding-left: 60px; /* Gives the logo room so it doesn't touch the text */
  }
}
/* ===== 5. FOOTER (Tightened Spacing) ===== */
/* ===== 3. FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #0a4a8a;
  color: white;
  border-top: 4px solid #e5c769;
}
/* ===== 4. FORMS ===== */
/* Keep these if you have custom forms in register.php or login.php */
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}
