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

:root {
  --white: #ffffff;
  --text-dark: #00222f;
  --teal: #00435e;
  --light-teal: #0e7695;
  --yellow: #e1d54f;
  --peach: #f19485;
  --green: #5bcbc1;
  --dark-peach: #cb6b2e;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-size: 20px;
  line-height: 1.2;
}

/* ── HEADINGS ── */
h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 725;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.2;
  color: var(--teal);
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 725;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.2;
  padding-bottom: 1rem;  
  color: var(--teal);
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 725;
  font-size: 24px;
  padding-bottom: 1rem;
  color: var(--teal);
}

a {
  color: var(--teal);
}
a:hover {
  color: var(--dark-peach);
}
.link {
  color: var(--teal);
  text-decoration: underline;
}
.link:hover {
  color: var(--dark-peach);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--light-teal);
  padding: 1.5rem 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile ul a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* ── NAV ── */
nav {
  background: var(--light-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 0.875rem 3rem;
  border-bottom: 0.0625rem solid rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 100;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 725;
  color: var(--white);
}
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.nav-links a:hover { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-login {
  display: none;
}
.btn-cta {
  background: var(--peach);
  color: white;
  border: none; cursor: pointer;
  padding: 0.5625rem 1.25rem;
  border-radius: 1.875rem;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
  margin: 1rem 0;
}
.btn-cta:hover { background: var(--dark-peach); }

/* ── HERO ── */
.hero {
  padding: 3.75rem 3rem 0;
  background: var(--white);
}
.hero-logo {
  width: 400px;
  flex-shrink: 0;
  margin-right: 15rem;
  margin-bottom: 2rem;
}
.hero h1 {
  max-width: 43.75rem;
  margin-bottom: 1rem;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 1.125rem 1.125rem 0 0;
  overflow: hidden;
  margin-top: 0.75rem;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 2rem; right: 2.5rem;
  background: var(--yellow);
  color: var(--teal);
  font-family: 'Montserrat', sans-serif;
  font-weight: 725;
  font-size: 28px;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}
.hero-badge::after { content: '→'; font-size: 22px; }
.hero-badge:hover { color: white; background: var(--dark-peach); }

/* ── INITIATIVES ── */
.initiatives {
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.75rem;
  align-items: start;
}
.initiatives-cards { display: flex; flex-direction: column; gap: 0.875rem; }

.initiative-card {
  border-radius: 1.125rem;
  padding: 1.75rem 1.875rem;
  position: relative;
}
.card-green  { background: var(--green); }
.card-yellow { background: var(--yellow); }
.card-purple { background: var(--peach); }
.card-lgreen { background: var(--green); }

/* ── GARDEN SECTION ── */
.garden-section {
  background: var(--white);
}
.garden-image {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  display: block;
}
.garden-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3.75rem 3rem;
  align-items: center;
}
.garden-content .sub {
  margin-bottom: 1.25rem;
}
.garden-content p {
  line-height: 1.5; margin-bottom: 0.875rem;
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  cursor: pointer;
  padding: 0.5625rem 1.25rem;
  border-radius: 1.875rem;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
  margin: 1rem 0;
}
.btn-outline:hover { background: var(--dark-peach); color: white; border-color: var(--dark-peach); }
.garden-photo {
  border-radius: 1.125rem;
  overflow: hidden;
  height: 17.5rem;
}
.garden-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ── EVENTS ── */
.events-section { padding: 3.75rem 3rem; }
.events-section .sub { margin-bottom: 1.75rem; }

.event-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 0;
  border-top: 0.0625rem solid rgba(0,0,0,0.1);
}
.event-item:last-child { border-bottom: 0.0625rem solid rgba(0,0,0,0.1); }
.event-info .event-title {
  font-weight: 600;
}
.event-info .event-date { margin-top: 0.1875rem; }
.event-tag {
  padding: 0.375rem 1rem;
  border-radius: 1.25rem;
  font-weight: 600;
  color: white;
}
.tag-green  { background: #4a9060; }
.tag-yellow { background: #c0a820; }
.tag-peach  { background: var(--peach); }

/* ── DONATE ── */
.donate-section {
  background: var(--light-teal);
  padding: 3.75rem 3rem;
}
.donate-section .sub { color: rgba(255,255,255,0.5); margin-bottom: 2rem; }


.donation-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
}
.donation-card {
  background: #4a2030;
  border-radius: 0.875rem;
  padding: 2rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  border: 0.125rem solid transparent;
}
.donation-card:hover { border-color: var(--yellow); }
.donation-card .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ── CONTACT ── */
.contact-section { padding: 3.75rem 3rem; }
.contact-section .sub { margin-bottom: 1.75rem; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.contact-form .full-width { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: white;
  border: 0.0625rem solid #ddd;
  border-radius: 0.5rem;
  padding: 0.8125rem 1rem;
  outline: none;
  transition: border 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--teal); }
.contact-form textarea { resize: vertical; min-height: 6.875rem; }

/* ── FOOTER ── */
.footer-wrapper {
  background: var(--teal);
  overflow: hidden;
}
footer {
  background: transparent;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 30% 50%;
  gap: 20%;
  align-items: end;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer-social {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.875rem;
}
.footer-social a {
  text-decoration: none;
}
.footer-contact {
  text-align: right;
  background: transparent;
}

.footer-contact .footer-small {
  margin-top: 0.5rem;
}
.footer-bottom {
  background: var(--yellow);
  padding: 1.125rem 3rem;
  display: flex;
  justify-content: space-between;
}
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--teal); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero > div { flex-direction: column; }
  .hero-logo { margin-right: 0 !important; margin-bottom: 2rem; }
}

@media (max-width: 768px) {
  nav { padding: 0.75rem 1.25rem; justify-content: space-between; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero, .initiatives, .garden-content, .events-section,
  .donate-section, .contact-section, footer, .footer-bottom, .footer-wrapper {
    padding-left: 1.25rem; padding-right: 1.25rem;
  }
  .hero > div { flex-direction: column; }
  .hero-logo { margin-right: 0 !important; margin-bottom: 2rem; }
  .initiatives { grid-template-columns: 1fr; gap: 2rem; }
  .garden-content { grid-template-columns: 1fr; }
  .donation-amounts { grid-template-columns: repeat(2, 1fr); }
  .contact-form { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.25rem; }
  .footer-brand { justify-content: flex-start; }
  .footer-contact { text-align: left; padding: 0; }
  .footer-social { justify-content: flex-start; margin-top: 1rem; }
  .footer-wrapper { padding-bottom: 0; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; padding: 1rem 1.25rem; }
}
