body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f6f8fa;
  color: #222;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0a174e;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(10,23,78,0.08);
  padding: 0.5rem 2rem;
  z-index: 100;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* NAVIGATION LINKS & DROPDOWN */
.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  background: #0057e7;
  color: #fff;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  font-size: 1rem;
  outline: none;
}

.dropdown-btn:hover, .nav-dropdown:hover .dropdown-btn {
  background: #0057e7;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(10,23,78,0.13);
  border-radius: 8px;
  z-index: 1000;
  flex-direction: column;
  padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown:focus-within .dropdown-content {
  display: flex;
}

.dropdown-link {
  color: #0a174e;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 4px;
  margin: 0 0.3rem;
  outline: none;
}

.dropdown-link:hover {
  background: #e6f0ff;
  color: #0057e7;
}

/* HERO SECTION (front page) */
.hero {
  background: linear-gradient(120deg, #0a174e 60%, #0057e7 100%);
  color: #fff;
  padding: 5rem 0 3rem 0;
  text-align: center;
  margin-top: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Make the logo much bigger and remove white edges */
.hero-logo {
  width: 240px;
  height: 240px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  background: #fff;
  border-radius: 16px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

/* FEATURED POSTS */
.featured-posts {
  text-align: center;
  margin: 3rem 0 2rem 0;
}

.featured-posts h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  font-family: 'Georgia', serif;
  color: #0a174e;
}

.posts-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.post-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(10,23,78,0.10);
  width: 280px;
  height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
}

.post-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,87,231,0.18);
}

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #fff;
  display: block;
  border-bottom: 1px solid #eee;
}

.post-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a174e;
  margin: 1rem 0 0.5rem 0;
  text-align: center;
  padding: 0 1rem;
}

/* DRAFT PAGE HERO */
.draft-hero {
  background: linear-gradient(120deg, #0a174e 60%, #0057e7 100%);
  color: #fff;
  padding: 4rem 0 2rem 0;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 4px 24px rgba(10,23,78,0.12);
}

.draft-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.draft-logo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 16px;
  border: 2px solid #fff;
}

.draft-title {
  font-size: 2.7rem;
  font-weight: bold;
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.draft-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.draft-main-content {
  max-width: 900px;
  margin: 2rem auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10,23,78,0.09);
  padding: 2rem 2.5rem;
}

.draft-section-title {
  font-size: 1.6rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 1.1rem;
  font-family: 'Georgia', serif;
}

.draft-list,
.notes-block {
  margin-bottom: 2rem;
  font-size: 1.08rem;
  color: #222;
}

.draft-list h3,
.notes-block h3 {
  color: #222;
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.draft-list ul,
.notes-block ul {
  margin-bottom: 1.4rem;
}

.back-home {
  margin: 2.5rem 0 0 0;
  text-align: center;
}

.back-home-btn {
  display: inline-block;
  background: #0a174e;
  color: #fff;
  padding: 0.7rem 2.2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(10,23,78,0.12);
  transition: background 0.2s;
}

.back-home-btn:hover {
  background: #0057e7;
}

/* DEPTH PAGE HERO */
.depth-hero {
  background: linear-gradient(120deg, #0a174e 60%, #0057e7 100%);
  color: #fff;
  padding: 4rem 0 2rem 0;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 4px 24px rgba(10,23,78,0.12);
}

.depth-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.depth-logo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 16px;
  border: 2px solid #fff;
}

.depth-title {
  font-size: 2.7rem;
  font-weight: bold;
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.depth-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.depth-main-content {
  max-width: 900px;
  margin: 2rem auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10,23,78,0.09);
  padding: 2rem 2.5rem;
}

.depth-section-title {
  font-size: 1.6rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 1.1rem;
  font-family: 'Georgia', serif;
}

.depth-chart-list h3 {
  color: #222;
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.depth-chart-list {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.twoway {
  color: #c20000;
  font-weight: bold;
}

.notes-block {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 2rem;
}

.notes-block h3 {
  color: #222;
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* SALARY PAGE HERO */
.salary-hero {
  background: linear-gradient(120deg, #0a174e 60%, #0057e7 100%);
  color: #fff;
  padding: 4rem 0 2rem 0;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 4px 24px rgba(10,23,78,0.12);
}

.salary-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.salary-logo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 16px;
  border: 2px solid #fff;
}

.salary-title {
  font-size: 2.7rem;
  font-weight: bold;
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.salary-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.salary-main-content {
  max-width: 900px;
  margin: 2rem auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10,23,78,0.09);
  padding: 2rem 2.5rem;
}

.salary-section-title {
  font-size: 1.6rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 1.1rem;
  font-family: 'Georgia', serif;
}

.salary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 1.08rem;
  color: #222;
  background: #fff;
}

.salary-table th, .salary-table td {
  padding: 0.7rem 0.7rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.salary-table th {
  background: #f6f8fa;
  font-weight: 700;
}

.highlight-green {
  background: #d4f8d4 !important;
  font-weight: bold;
}

.highlight-yellow {
  background: #fff7cc !important;
  font-weight: bold;
}

.twoway-row {
  color: #c20000;
  font-weight: bold;
}

.salary-summary {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #222;
}

.notes-block {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 2rem;
}

.notes-block ul {
  margin-bottom: 0;
}

.notes-block li {
  margin-bottom: 0.7rem;
}

.notes-key {
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.key-green {
  color: #13a813;
  font-weight: bold;
}

.key-red {
  color: #c20000;
  font-weight: bold;
}

.key-blue {
  color: #0057e7;
  font-weight: bold;
}

.key-yellow {
  color: #bca200;
  font-weight: bold;
}

@media (max-width: 900px) {
  .posts-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .post-card {
    width: 90vw;
    max-width: 350px;
  }
  .hero {
    padding: 3rem 0 2rem 0;
  }
  .hero-logo {
    width: 120px;
    height: 120px;
  }
  .draft-main-content,
  .depth-main-content,
  .salary-main-content {
    padding: 1.2rem 0.6rem;
  }
  .draft-logo,
  .depth-logo,
  .salary-logo {
    width: 120px;
    height: 120px;
  }
  .salary-table th, .salary-table td {
    padding: 0.4rem 0.2rem;
    font-size: 1rem;
  }
  .dropdown-content {
    min-width: 160px;
    left: auto;
    right: 0;
  }
}
