
:root {
  --sage: #9FA88F;
  --olive: #8B916A;
  --blush: #E6B7BA;
  --cream: #F7F5E7;
  --brown: #5A4633;
  --text: #3A2F2A;
  --bg: #FBF9F6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Tsukimi Rounded", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

header {
  background: linear-gradient(135deg, var(--blush), var(--cream));
}

nav {
  font-family: "Tsukimi Rounded", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px; /* controls how close text is to logo */
  flex-shrink: 1;
  min-width: 0;
  margin-right: auto;
}

.brand img {
  width: 170px;
  height: auto;
}

.brand h1 {
  font-size: 1.9rem;
  font-family: "Tsukimi Rounded", sans-serif;
  color: var(--text);
  font-weight: 500;
  font-style: normal;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--text);
}

/* Hide hamburger by default */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

/* Desktop nav links display normally */
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
  nav {
    justify-content: space-between;
  }

  /* Show hamburger button */
  .hamburger {
    display: block;
  }

  /* Hide nav links by default on mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
    margin-top: 0.5rem;
  }

  /* Show nav links when active */
  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }
}

.hero {
  max-width: 900px;
  margin: auto;
  padding: 4rem 2rem 5rem;
  text-align: center;
}

.hero h2 {
  font-family: "Tsukimi Rounded", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 650px;
  margin: auto;
}

.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  background: var(--sage);
  color: white;
  text-decoration: none;
  font-weight: 500;
}

section {
  padding: 4rem 2rem;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.organic-image {
  background: var(--cream);
  border-radius: 60% 40% 55% 45%;
  height: 340px;
  display: flex;
  justify-content: center;
  align-items: center
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 28px;
}



footer {
  background: var(--olive);
  color: white;
  padding: 3rem 2rem;
  font-size: 0.85rem;
}

footer p { max-width: 900px; margin: auto; }

@media (max-width: 768px) {
  .grid { grid-template-columns: 1fr; }
  .hero h2 { font-size: 2.1rem; }
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {

/* -------- NAVIGATION -------- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; /* keep brand + hamburger on one line */
  padding: 1rem 1.5rem;
}

/* Brand: logo + text */
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 1;
  min-width: 0;
}

.brand img {
  width: 120px;
  height: auto;
}

.brand h1 {
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hamburger */
.hamburger {
  display: block;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

/* Nav links hidden by default */
.nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

/* Show links when active */
.nav-links.active {
  display: flex;
}

.nav-links a {
  display: block;
  width: 100%;
  font-size: 1rem;
}
nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
  }

  nav a {
    display: block;
    width: 100%;
    font-size: 1rem;
  }

  /* -------- HERO SECTION -------- */
  .hero {
    padding: 2rem 1rem 3rem;
    text-align: center;
  }

  .hero h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    max-width: 90%;
    margin: 1rem auto;
    font-size: 1rem;
  }

  .cta {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    text-align: center;
  }

  /* -------- GRID / SECTIONS -------- */
  .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .organic-image {
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  /* -------- FOOTER -------- */
  footer p {
    padding: 0 1rem;
    text-align: center;
    font-size: 0.8rem;
  }

  /* -------- IMAGES -------- */
  img {
    max-width: 100%;
    height: auto;
  }
}
