/* --- Reset & Variables --- */
:root {
  --font-family: "Inter", sans-serif;
  --color-text-main: #121212;
  --color-text-light: #5F5C64;
  --color-dark-green: #4A6117;
  --color-darker-green: #4A6117;
  --color-lime-accent: #ebf2af;
  --color-cream-bg: #EDEFE8;
  --color-yellow-cta: #E8EC67;
  --color-border: #eeeeee;
  --color-hero-start: #ffffff;
  --color-hero-mid: #e89f7a;
  /* Peach/Orange */
  --color-hero-end: #a31621;
  /* Dark Red/Maroon */
}

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

body {
  font-family: var(--font-family);
  color: var(--color-text-main);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Utilities */
.learning_container {
  max-width: 1240px;
  margin: 0 96px;
  padding: 0 0;
}

.section-padding {
  padding: 64px 0;
}

.bg-white {
  background-color: #fff;
}

.bg-cream {
  background-color: var(--color-cream-bg);
}

.mb-6 {
  margin-bottom: 24px;
}

/* --- Navigation --- */
.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  background: #fff;
  position: relative;
  z-index: 100;
}

.nav-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
}

.bag-icon {
  width: 16px;
  height: 12px;
  background: #000;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  margin: 0 1px;
}

.bag-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 4px;
  height: 4px;
  background: var(--color-dark-green);
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  gap: 32px;
  margin: auto 10px;
  white-space: nowrap;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
}

.login-link {
  font-weight: 600;
  font-size: 14px;
}

.btn-nav {
  background: #ffffff;
  color: var(--color-dark-green);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #000;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- 1. Hero Section (Learning) --- */
.hero-learning {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: url("./assets/learning-hero.png") no-repeat center/cover;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  /* Complex gradient to match the orange/red fade image */
  background: linear-gradient(90deg,
      #fff 0%,
      #fff 40%,
      var(--color-hero-mid) 70%,
      var(--color-hero-end) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  width: 710px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
}

.crumb-arrow {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 4px;
  fill: #666;
}

h1 {
  color: #121212;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -2px;
}

.hero-description {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-hero-primary {
  background: var(--color-dark-green);
  color: #fff !important;
  padding: 16px 28px;
  border-radius: 6px;
  margin-top: 32px;
  font-weight: 600;
}

/* --- 2. Intro Section (Equal Height) --- */
.equal-height-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.text-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.text-content h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.text-content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}

.icon-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  margin-top: 8px;
}

.icon-list-grid li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0px;
  color: #121212;
}

.icon-circle-lime {
  background: #E8EC67;
  border-radius: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle-inner {
  background: #4A6117;
  border-radius: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle-inner svg {
  width: 16px;
  height: 16px;
  color: #E8EC67;
}

/* 2-Column Grid for Bullets */
.feature-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 12px;
}

.feature-item span {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

.icon-circle-olive {
  background: #dcee60;
  color: #384e20;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.image-content {
  width: 506px;
  height: auto;
}

.image-content img {
  border-radius: 8px;
  width: 506px;
  height: auto;
  align-self: stretch;
  object-fit: cover;
}

/* --- 3. Focus Areas (Flex Cards) --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.learning-header h2 {
  color: #121212;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 8px;
}

.learning-header p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 32px;
}

.flex-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.focus-card {
  background: #fff;
  border: 0.4px solid #4A6117;
  border-radius: 12px;
  padding: 24px;
  width: calc(20% - 20px);
  /* 5 cards per row ideally, but wraps responsive */
  /* min-width: 240px; */
  flex-grow: 1;
  transition: 0.3s;
  margin: 0;
  /* height: fit-content; */
}

.focus-card:hover {
  border-color: var(--color-dark-green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Stacked Circle Icons */
.icon-stack {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 8px;
  background-color: #E8EC67;
}

.circle-back {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 4.398px;
  bottom: 4.4px;
  background: #4A6117;
  /* Light Olive */
  border-radius: 50%;
  opacity: 0.5;
}

.circle-front {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 4px;
  left: 4px;
  background: #4A6117;
  /* Dark Green */
  border-radius: 50%;
}

.focus-card h3 {
  color: #121212;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0;
  font-size: 16px;
  margin-bottom: 8px;
}

.focus-card p {
  color: #5F5C64;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

/* --- 4. CTA --- */
.cta-banner {
  background: var(--color-yellow-cta);
  border-radius: 24px;
  padding: 48px 64px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-banner h2 {
  color: #121212;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.cta-banner p {
  width: 810px;
  color: #121212;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.btn-dark {
  background: var(--color-dark-green);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
}

.btn-text-link {
  font-weight: 600;
  color: #111;
  padding: 14px 20px;
}

/* --- Footer --- */
.footer-section {
  background: var(--color-cream-bg);
  padding: 80px 0 30px;
  font-size: 14px;
  color: #333;
}

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

.footer-links-grid {
  display: flex;
  gap: 60px;
}

.footer-links-grid h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links-grid a {
  color: #555;
  display: block;
  margin-bottom: 8px;
}

.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-bottom: 0px;
}

.nl-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 250px;
  margin-right: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media (max-width: 992px) {

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .equal-height-row {
    grid-template-columns: 1fr;
    /* gap: 30px; */
  }

  .image-content {
    height: auto;
  }

  .feature-grid-2col {
    grid-template-columns: 1fr;
  }

  .flex-card-grid {
    justify-content: flex-start;
  }

  .focus-card {
    width: 100%;
    max-width: 100%;
  }

  .footer-links-grid {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nl-form {
    width: 100%;
  }

  .nl-form input {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Mobile Screens */
@media (max-width: 600px) {
  .learning_container {
    margin: 0;
    padding: 0 24px;
  }

  .cta-banner {
    padding: 32px;
    text-align: center;
    border-radius: 16px;
  }

  .cta-banner h2 {
    color: #121212;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1px;
  }


  .cta-banner p {
    width: 100%;
    color: #121212;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    margin: 0 auto 24px;
  }


  .cta-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    align-items: center;
  }

  .btn-dark {
    background: var(--color-dark-green);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    display: inline-block;
    width: 100%;
  }

  .btn-text-link {
    font-weight: 600;
    color: #111;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    display: inline-block;
    width: 100%;
  }

  .section-padding {
    padding: 24px 0;
  }

  .learning-header h2 {
    color: #121212;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 8px;
  }

  .learning-header p {
    color: #5F5C64;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    margin-bottom: 32px;
  }

  .flex-card-grid {
    gap: 16px;
  }

  .icon-stack {
    position: relative;
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    border-radius: 8px;
    background-color: #E8EC67;
  }


  .circle-front {
    width: 21px;
    height: 21px;
    position: absolute;
    top: 3px;
    left: 3px;
    background: #4A6117;
    border-radius: 50%;
  }

  .circle-back {
    width: 18px;
    height: 18px;
    position: absolute;
    right: 3.299px;
    bottom: 3.301px;
    background: #4A6117;
    border-radius: 50%;
    opacity: 0.5;
  }

  .focus-card {
    border-radius: 16px;
    border: 0.4px solid #4A6117;
  }


  .focus-card h3 {
    color: #121212;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
    margin-bottom: 8px;
  }

  .equal-height-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .image-content {
    width: 100%;
    height: 100%;
  }

  .icon-list-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0px;
  }

  .icon-circle-lime {
    width: 36px;
    height: 36px;
    border-radius: 18px;
  }

  .icon-circle-inner {
    width: 18px;
    height: 18px;
    border-radius: 9px;
  }

  .icon-circle-inner svg {
    width: 12px;
    height: 12px;
  }

  .icon-list-grid li {
    color: #121212;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
  }

  .text-content p {
    color: #121212;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
  }

  .text-content h2 {
    color: #121212;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.5px;
  }

  .hero-learning {
    height: 372px;
    padding: 42px 0 64px;
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url(./assets/learning-hero.png) no-repeat calc(85%) calc(50%) / cover;
  }

  .hero-content {
    width: 100%;
    gap: 12px;
  }

  h1 {
    color: #121212;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -2px;
  }

  .hero-description {
    color: #121212;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
  }

  .btn-hero-primary {
    width: 100%;
    text-align: center;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    margin-top: 20px;
  }



}