/* ===== DESIGN SYSTEM ===== */
:root {
  --primary: #0E6B3A;
  --primary-dark: #005026;
  --secondary: #2E8B57;
  --accent: #E0B72E;
  --accent-hover: #F7CD34;
  --gold: #C9A227;
  --deep-yellow: #7A600A;
  --text: #333333;
  --text-light: #666666;
  --bg-light-gold: #FBF4E0;
  --bg-light-green: #EBF3ED;
  --bg-green-trans: #0E6B3A1F;
  --off-white: #F7F9F7;
  --near-black: #1A1A1A;
  --dark-green: #153D20;
  --primary-green: #1E5C2F;
  --grad-green: #0E6B3AC4;
  --grad-yellow1: #FFE68CCF;
  --grad-yellow2: #D5A400;
  --button-text-dark: #473806;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--near-black);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1rem; }

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--button-text-dark);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224,183,46,0.3);
}
.nav-links .btn-primary {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--button-text-dark);
  border-color: var(--accent);
  transition: background 0.3s;
}
.nav-links .btn-primary:hover {
  background:var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224,183,46,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

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

/* ===== HEADER & NAV ===== */
.site-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo img {
  height: 60px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--primary);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--bg-light-green) 0%, white 100%);
  padding: 2.8rem 0 3rem;
  text-align: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem;
  align-items: center;
}
.hero-content h1 {
  color: var(--dark-green);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 2rem;
}
.hero-image img {
  justify-self: end;
  align-self: start;
  border-radius: 0px;
  width: 85%;
  box-shadow: 0 0px 0px rgba(0,0,0,0);
}

/* ===== DUAL PATHWAY SELECTOR ===== */
.pathway-selector {
  padding: 4rem 0;
  background: white;
}
.pathway-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 2rem;
}
.pathway-card {
  display: block;
  background: var(--bg-light-gold);
  border: none;                       /* removed outline */
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;              /* removes blue underline */
  color: inherit;                     /* keeps text colour, not blue */
  transition: transform var(--transition), box-shadow var(--transition);
}
.pathway-card:nth-child(2) {
  background: var(--bg-light-green);
}
.pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}

/* New: aligns icon and title horizontally */
.card-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.card-title-row img {
  width: 40px;           /* slightly smaller to balance the line */
  height: auto;
}
.card-title-row h3 {
  margin: 0;
  font-family: var(--font-body);   /* sans-serif, as requested */
  color: var(--primary);
  font-size: 1.5rem;
}
.pathway-card p {
  font-family: var(--font-body);   /* sans-serif body text */
  color: var(--text-light);
}

/* ===== SECTIONS GENERAL ===== */
.section-padding {
  padding: 5rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.8rem auto 0;
}

/* ===== BUSINESS & LEADERSHIP SPLIT ===== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-text h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.split-image img {
  border-radius: 16px;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials {
  background: var(--bg-light-green);
}
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.testimonial-card {
  min-width: 100%;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.testimonial-card .author {
  font-weight: 600;
  color: var(--primary);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  cursor: pointer;
}
.dot.active {
  opacity: 1;
  background: var(--accent);
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1.2rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-light);
  padding-top: 0.5rem;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--dark-green);
  color: var(--off-white);
  border-radius: 12px;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--off-white);
}

/* ===== BOOKING PAGE ===== */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.booking-info {
  background: var(--bg-light-green);
  padding: 2.5rem;
  border-radius: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer a {
  color: var(--accent);
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}
.footer h4 {
  margin-bottom: 1.2rem;      /* more space after heading */
  color: var(--off-white);   /* or use #F7F9F7 */
}
.footer p {
  margin-bottom: 0.3rem;      /* tighter links */
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    background: white;
    padding: 5rem 2rem;
    transition: right 0.3s;
  }
  .nav-links.active {
    right: 0;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-grid,
  .split-grid,
  .pathway-cards,
  .about-hero,
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.workshop-img {
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* Left-aligned hero for Leadership page */
.hero-left .hero-content {
  text-align: left;
}
.hero-left .hero-content p {
  margin-left: 0;
  margin-right: auto;    /* keep it from stretching full width if you want a max-width */
}
.hero-left .btn {
  margin-left: 0;
}
/* ===== GLOBAL LEFT ALIGNMENT ===== */
body {
  text-align: left;
}

/* Remove center alignment from hero */
.hero {
  text-align: left;
}

/* Hero content: keep the text left-aligned, but still allow the image on the right */
.hero-content {
  text-align: left;
}
.hero-content h1,
.hero-content p {
  text-align: left;
}
.hero-content p {
  margin-left: 0;
  margin-right: auto;
}

/* Section titles – left align the heading and the gold line */
.section-title {
  text-align: left;
}
.section-title h2 {
  display: block;          /* was inline-block; now it takes full width */
}
.section-title h2::after {
  margin-left: 0;          /* gold line sticks to the left */
  margin-right: 0;
}

/* Testimonial cards */
.testimonial-card {
  text-align: left;
}

/* Pathway cards */
.pathway-card {
  text-align: left;
}

/* FAQ */
.faq-item {
  text-align: left;
}

/* Footer content stays left (it already is, but safe) */
.footer,
.footer-grid,
.footer-bottom {
  text-align: left;
}

/* BUTTONS: keep text centered */
.btn,
button,
.nav-links .btn-primary,
.hero .btn {
  text-align: center;
}
.card-title-row {
  justify-content: flex-start;
}
.footer-bottom {
  text-align: center !important;
}
.center-section {
  text-align: center;
}
.center-section .section-title {
  text-align: center;
}
.center-section .section-title h2 {
  display: inline-block;    /* keep the gold underline centered if needed */
}
.center-section .section-title h2::after {
  margin-left: auto;
  margin-right: auto;
}
.hero-image img,
.split-image img,
.about-hero img,
.testimonial-card img,
.pathway-card img {
  border-radius: 12px;      /* same soft rectangle as your buttons */
}
