/* LEO GOLDING OMS - MASTER ACCESSIBILITY STYLE */
:root {
  --primary-navy: #001A33;
  --accent-gold: #B57D45;
  --bg-off-white: #FBFBFB;
  --text-main: #000000;
}

body {
  font-family: Verdana, Geneva, sans-serif;
  line-height: 1.8;
  color: var(--text-main);
  background-color: var(--bg-off-white);
  margin: 0;
  padding: 0;
}

/* NEW SPLIT HEADER DESIGN */
header.main-header {
  background-color: var(--primary-navy); 
  display: flex;
  align-items: center;
  min-height: 350px; /* Adjust this to change header height */
  padding: 0;
  overflow: hidden;
  border-bottom: 8px solid var(--accent-gold);
}

.header-left {
  flex: 1; 
  padding: 40px;
  text-align: left;
}

.header-title {
  font-weight: bold;
  font-size: 3.2rem;
  color: #FFFFFF !important;
  margin: 0;
  line-height: 1.1;
}

.header-subtitle {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-top: 15px;
}

.header-right {
  flex: 1;
  height: 100%;
  align-self: stretch;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* NAVIGATION */
nav {
  background: #FFFFFF;
  border-bottom: 2px solid #DDD;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  padding: 15px 20px;
  text-decoration: none;
  color: var(--primary-navy);
  font-weight: bold;
  font-size: 1.2rem;
}

nav a:hover {
  background: #EEE;
  text-decoration: underline;
}

/* LAYOUT & CONTENT */
.container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border: 1px solid #EEE;
  border-radius: 8px;
}

h1, h2, h3 { color: var(--primary-navy); }

/* High-Contrast Buttons */
.btn {
  display: inline-block;
  background-color: var(--accent-gold);
  color: white !important;
  padding: 18px 30px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.3rem;
  margin: 10px 0;
  border: 2px solid #8c5d2e;
  text-align: center;
}

.btn:hover { background-color: var(--primary-navy); }

/* Resource Cards */
.card {
  border: 3px solid var(--primary-navy);
  padding: 20px;
  margin: 20px 0;
  border-radius: 12px;
}

/* Mobile Responsive */
@media (max-width: 700px) {
  header.main-header {
    flex-direction: column;
  }
  .header-left {
    text-align: center;
    padding: 30px 20px;
  }
  .header-right {
    height: 250px;
    width: 100%;
  }
  .header-title {
    font-size: 2.2rem;
  }
  .btn { width: 100%; box-sizing: border-box; }
}