@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
/*  ========================================
    COLOR PRIMITIVES
    ======================================== */
  --neutral-200: #f5f5f5;
  --neutral-300: #f9f8ef;
  --neutral-500: #6b6b6b;
  --neutral-700: #4d4d4d;
  --green-300: #74b238;
  --green-500: #1b7b01;
  --green-900: #0a4c00;
  --orange-500: #f8991d;
  --orange-700: #E1A660;
  --orange-900: #977241;
  --white: #ffffff;
  --black: #000000;
  --pink-500: #ff9999;

/*  ========================================
    SEMANTIC COLORS
    ======================================== */
  --brand-primary: var(--green-500);
  --brand-secondary: var(--orange-500);
  --brand-tertiary: var(--neutral-300);
  --color-bg: var(--white);
  --color-bg-alt: var(--neutral-300);
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-border: #e0e0e0;
  --color-dark: #262626;
  --color-placeholder: #cfcfcf;

/*  ========================================
    TYPOGRAPHY
    ======================================== */
  --font-body: system-ui, -apple-system, "Inter", sans-serif;
  --font-heading: "Fredoka", sans-serif;

  --container-max: 1200px;
  --gutter: 5vw;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.15;
}

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

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Placeholder blocks — stand in for real photography until assets exist */
.placeholder-img {
  background: var(--color-placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  min-height: 200px;
  border-radius: 4px;
}

.placeholder-line {
  height: 10px;
  border-radius: 5px;
  background: #b3b3b3;
  margin: 0.6rem 0;
}
.placeholder-line--full { width: 100%; max-width: 540px; }
.placeholder-line--medium { width: 70%; max-width: 380px; }
.placeholder-line--short { width: 45%; max-width: 260px; }
.placeholder-line--footer { width: 260px; max-width: 100%; }
.placeholder-line--footer-short { width: 170px; max-width: 100%; background: #4d4d4d; }
.spaced-above { margin-top: 1.5rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease;
  will-change: transform;
}

.btn--primary {
  background: var(--brand-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-300);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,.4);
}

.cta-rive {
  display: block;
  width: 330px;
  max-width: 100%;
  /* Artboard is 330px with a 290px button centered inside it (20px buffer
     per side for the hover-grow animation) — shift left by that buffer so
     the visible button, not the artboard edge, lines up with the text. */
  margin: 0 0 0 -20px;
  cursor: pointer;
}
.cta-rive__canvas {
  display: block;
  width: 100%;
  aspect-ratio: 330 / 90;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  font: var(--font-heading);
  background: var(--brand-tertiary);
  color: var(--brand-primary);
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img {
  display: block;
  height: 100px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
  font-size: 1.2rem;
}
.nav__links a {
  position: relative;
  line-height: 1;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__links a.is-active {
  color: var(--brand-secondary);
}

/*  ========================================
    SECTION LAYOUTS
    ======================================== */
main section {
  padding: 4.5rem 0;
  scroll-margin-top: 140px;
}

/* .hero {
  background: url('/assets/images/heartflower.svg') repeat, var(--color-bg-alt);
  background-size: 10%, auto;
} */

.hero {
  position: relative;
  background-color: var(--color-bg-alt);
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/heartflower.svg') repeat;
  background-size: 10%, auto;
  opacity: 0.8;
  z-index: -1;
}


.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: center;
}

.hero__text {
  max-width: 520px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--brand-primary);
}

.hero__subtitle {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 1.5rem 0;
}
.hero__media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
}

/* Our Story Section */
.about {
  border-top: 1px solid var(--color-border);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about h2 {
  font-size: 2rem;
  margin: 0.5rem 0 1.25rem;
}
.about__media {
  min-height: 340px;
}

/* What We Offer Section */
.offer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}
.offer h2 {
  font-size: 2rem;
  margin: 0.5rem 0 2.5rem;
}
.offer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--color-bg);
  border-radius: 8px;
  padding: 1.5rem;
}
.card__media {
  min-height: 160px;
  margin-bottom: 1.25rem;
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

/* Find Us Section */
.find-us {
  border-top: 1px solid var(--color-border);
}
.find-us h2 {
  font-size: 2rem;
  margin: 0.5rem 0 2.5rem;
}
.find-us__content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}
.find-us__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.market-card {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 1.5rem;
}
.market-card__day {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem;
}
.market-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.market-card__time {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.find-us__media {
  min-height: 340px;
}

/* Disclaimer */
.disclaimer {
  display: flex;
  max-width: 500px;
  border: ;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer h3 {
  color: var(--color-text-muted);
  font-weight: 500;
  text-align: center;
}

.disclaimer p {
  color: var(--color-text-muted);
  text-align: center;
}

/* Footer */
.footer {
  background: var(--brand-tertiary);
  color: #fff;
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo img {
  display: block;
  height: 100px;
  width: auto;
}

.footer__copyright {
  color: var(--brand-primary);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .nav__links {
    gap: 1.25rem;
    font-size: 0.8rem;
  }
  .hero__inner,
  .about__inner,
  .find-us__content {
    grid-template-columns: 1fr;
  }
  .hero__media,
  .about__media {
    order: -1;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: 100%;
    padding: 0 1.25rem;
  }
  .nav__inner {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .nav__links {
    gap: 1rem;
    flex-wrap: wrap;
  }
  main section {
    padding: 3rem 0;
  }
  .hero h1 {
    font-size: 1.85rem;
  }
  .footer__inner {
    align-items: flex-start;
  }
}
