:root {
    --jbird-green: #2E7D32;
    --jbird-black: #1a1a1a;
    --jbird-blue: #0000FF;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* Professional Nav Bar */
.nav-shim {
    background: white;
    border-bottom: 2px solid var(--jbird-black);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 900;
    color: var(--jbird-green);
    font-size: 1.8rem;
    text-decoration: none;
    font-style: italic;
    letter-spacing: -1px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-left: 1.2rem;
}

.btn-blue {
    background: var(--jbird-blue);
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Page Layout */
.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    border-bottom: 5px solid var(--jbird-green);
    display: inline-block;
    margin-bottom: 20px;
}

.card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--jbird-green);
    margin-bottom: 20px;
}
/* --- Mobile Menu Extension --- */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: black;
    margin: 5px 0;
    transition: 0.3s;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: 0.3s ease-in-out;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-menu.open {
    right: 0; /* Slides in */
}

.side-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-links, .desktop-links { display: none !important; }
    .hamburger { display: block !important; }
}
/* ── DROPDOWN NAV ── */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #444;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px;
  z-index: 200;
  overflow: hidden;
  margin-top: 4px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.15s;
}
.dropdown-menu a:first-child {
  font-weight: 700;
  color: #2E7D32;
  border-bottom: 1px solid #e5e7eb;
}
.dropdown-menu a:hover {
  background: #f0fdf4;
}
/* ── FIX DESKTOP NAV LAYOUT ── */
.nav-shim .nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.nav-shim .nav-links a,
.nav-shim .nav-links .dropdown {
  display: flex;
  align-items: center;
}
