/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #4a7c2e;
  --green-dark: #3a6322;
  --green-light: #5a9c3a;
  --dark: #1a1a1a;
  --dark-bg: #2c2c2c;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --off-white: #f5f5f0;
  --border: #ddd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  line-height: 1.2;
  color: var(--dark);
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo img {
  height: 60px;
  padding: 8px 0;
}

.main-nav {
  flex: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0;
  justify-content: center;
}

.nav-links li a {
  display: block;
  padding: 20px 16px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: var(--green);
  color: var(--white);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
}

.header-contact {
  font-size: 0.8rem;
}

.header-contact a {
  color: #ccc;
}

.header-contact a:hover {
  color: var(--white);
}

/* Announcement Bar */
.announcement-bar {
  background: var(--green);
  text-align: center;
  padding: 10px 20px;
}

.announcement-bar a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.announcement-bar a:hover {
  text-decoration: underline;
  color: var(--white);
}

/* Hero Section */
.hero {
  position: relative;
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero-text {
  color: var(--white);
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #b5d89a;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-logo img {
  width: 250px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

/* Content Sections */
.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--green-dark);
  border-bottom: 3px solid var(--green);
  padding-bottom: 10px;
  display: inline-block;
}

.content-section h3 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.content-section p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.sub-note {
  font-style: italic;
  color: var(--text-light);
}

/* Section with Sidebar (badges) */
.section-with-sidebar {
  display: flex;
  gap: 40px;
}

.section-main {
  flex: 1;
}

.section-sidebar {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
}

.sidebar-badge {
  width: 140px;
  border-radius: 4px;
}

.sidebar-photo {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-short {
  min-height: 320px;
}

/* Dark Section */
.section-dark {
  background: var(--off-white);
  border-top: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
}

.section-light {
  background: #f9fdf6;
}

/* Duties Columns */
.duties-columns {
  display: flex;
  gap: 40px;
  margin-top: 16px;
}

.duties-columns ul {
  flex: 1;
  padding-left: 20px;
}

.duties-columns li,
.duties-list li,
.benefits-list li,
.requirements-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.duties-list,
.benefits-list,
.requirements-list {
  padding-left: 24px;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonial {
  margin: 40px 0 10px;
  padding: 30px;
  background: var(--white);
  border-left: 5px solid var(--green);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.section-dark .testimonial {
  background: var(--white);
}

.testimonial-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.testimonial-image img {
  width: 100px;
  border-radius: 4px;
}

.testimonial-text p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.testimonial-text cite {
  font-style: normal;
  font-weight: 700;
  color: var(--green-dark);
  display: block;
  margin-top: 8px;
}

/* Underlined links in key sections */
#thank-you a,
#training a {
  text-decoration: underline;
}

#thank-you a:hover,
#training a:hover {
  color: var(--green-dark);
}

/* No underline on CTA box links */
.btn {
  text-decoration: none !important;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--dark);
  color: var(--white);
}

.btn-secondary:hover {
  background: #444;
  color: var(--white);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 50px 0 0;
}

.footer-content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 80px;
  margin-bottom: 12px;
}

.footer-info p {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-links,
.footer-contact {
  min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  color: #b5d89a;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 30px;
  padding: 16px 0;
  border-top: 1px solid #444;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    padding: 14px 20px;
    border-bottom: 1px solid #333;
  }

  .header-contact {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 30px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-logo img {
    width: 180px;
  }

  .section-with-sidebar {
    flex-direction: column;
  }

  .section-sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .sidebar-badge {
    width: 100px;
  }

  .duties-columns {
    flex-direction: column;
    gap: 0;
  }

  .testimonial-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}
