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

body {
  font-family: 'Nunito', sans-serif;
  background-color: #1a3a16;
  color: #2f3a2f;
  padding: 20px;
}

/* PAGE LAYOUT */
.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  border: 2px solid #444;
  border-radius: 25px;
  padding: 10px 15px;
  background-color: #fefcf8;
}

.navLinks {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.navLinks a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #6b8f63;
  padding: 6px 16px;
  border-radius: 20px;
}

.navLinks a:hover {
  background-color: #eaf3de;
  color: #3b6d11;
}

.navLinks a.active {
  background: #3b6d11;
  color: #eaf3de;
}

.nav-icons {
  display: flex;
  justify-content: flex-end;
}

.nav-icons .material-symbols-outlined {
  color: black;
}

/* =========================
   NAVBAR LOGO
   ========================= */

.logo {
  width: 60px;
  height: 60px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  border: 2px solid #444;
  border-radius: 25px;
  padding: 40px 20px;
  background-color: white;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* =========================
   INTRO (CENTERED)
   ========================= */
.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.intro h1 {
  font-size: 3rem;
  text-transform: uppercase;
}

.intro p {
  font-size: 1.2rem;
  max-width: 800px;
}

/* =========================
   LOGO BOX 
   ========================= */
.plantImg {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.plantImg img {
  width: 400px;
  height: 400px;
  object-fit: contain;
  display: block;
}

/* =========================
   STORY (LEFT ALIGNED)
   ========================= */
.story {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.story h2 {
  font-size: 2rem;
  text-transform: uppercase;
}

.story p {
  font-size: 1.2rem;
  max-width: 800px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .navbar {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .navLinks {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-icons {
    justify-content: center;
  }

  .intro h1 {
    font-size: 2rem;
  }

}
/* =========================
   UNIQUE & VALUES STYLING
   ========================= */

/* The container that holds both boxes */
.unique-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* This creates the two columns */
  gap: 30px;
  width: 100%;
}

/* Give these boxes the exact same "Hero" look */
.unique, .values {
  background-color: white;      /* White background */
  border: 2px solid #444;       /* Dark border like the Hero */
  border-radius: 25px;          /* Rounded corners */
  padding: 30px;                /* Padding inside the boxes */
  color: #2f3a2f;               /* Dark text for readability */
}

/* Match the Story section's heading style */
.unique h2, .values h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Match the Story section's paragraph style */
.unique p, .values p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Mobile: Stack them on top of each other when the screen is small */
@media (max-width: 900px) {
  .motto-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================
   SUSTAINABILITY & TRACKER
   ========================== */

/* The container that holds both boxes */
.sustainability-tracker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* This creates the two columns */
  gap: 30px;
  width: 100%;
}

/* Give these boxes the exact same "Hero" look */
.sustainability, .tracker {
  background-color: white;
  border: 2px solid #444;
  border-radius: 25px;
  padding: 30px;
  color: #2f3a2f;
}

/* Match the Story Section's heading style */
.sustainability h2, .tracker h2 {
  font-size: 2rem;
  text-transformation: uppercase;
  margin-bottom: 15px;
}

/* Match the story section's paragraph style */
.sustainability p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Mobile: Stack them on top of each other when the screen is small */
@media (max-width: 900px) {
  .sustainability-tracker-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================
   CUSTOM LIST & TEXT STYLING
   ========================= */

/* Indent the bulleted lists within the boxes */
.info-box ul, 
.values ul, 
.sustainability ul {
  padding-left: 40px;
  margin-top: 10px;
}

.info-box li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

strong {
  font-weight: 900; 
  color: #2f3a2f; 
  -webkit-text-stroke: 0;
  text-shadow: none;
  letter-spacing: normal;
}

.unique p, .values p, .sustainability p {
  font-size: 1.25rem;
  line-height: 1.7;
}

.sustainability h2, .tracker h2 {
  text-transform: uppercase;
}

.sustainability h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
