@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&family=League+Spartan:wght@700&family=Arimo:wght@700&display=swap');

/* Impact font fallback */
@font-face {
  font-family: 'Impact', Impact, Charcoal, sans-serif;
  font-weight: bold;
}

/* Title Styles */
h1, h3 {
  font-family: 'Impact', Impact, Charcoal, sans-serif;
  color: #F43A1B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h2 {
  font-family: 'League Spartan', 'DM Sans', Arial, sans-serif;
  color: #F43A1B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Subtitle Styles */
.subheadline,
.card h2,
.aboutus-container h2 {
  font-family: 'League Spartan', 'DM Sans', Arial, sans-serif;
  color: var(--avocado-green);
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Button Row for Homepage */
.button-row {
  display: flex;
  flex-direction: row;
  gap: 1.2em;
  justify-content: center;
  margin-top: 2rem;
}

/* Nav/Menu Button */
.menu-btn, .home-btn {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #3f2b17;
  color: #fff;
  border: none;
  border-radius: 2em;
  padding: 0.6em 1.5em;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(28, 57, 39, 0.08);
  text-decoration: none;
  transition: background 0.2s;
}
.menu-btn:hover, .home-btn:hover {
  background: var(--dark-green);
}

/* Translation Button */
.translate-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #fff;
  color: var(--dark-green);
  border: 1px solid var(--avocado-green);
  border-radius: 2em;
  padding: 0.5em 1.2em;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 1002;
  box-shadow: 0 2px 8px rgba(28, 57, 39, 0.08);
  transition: background 0.2s;
}
.translate-btn:hover {
  background: var(--avocado-green);
  color: var(--soft-beige);
}

:root {
  --avocado-green: #8BA888;
  --soft-beige: #F4F3ED;
  --dark-green: #1C3927;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  background: var(--soft-beige);
  color: var(--dark-green);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.feedback-badge {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: #3f2b17;
  color: var(--soft-beige);
  padding: 0.6em 1.2em;
  border-radius: 2em;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(28, 57, 39, 0.08);
  z-index: 1000;
  font-size: 1rem;
}

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem 3rem 1rem;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-green);
}

.subheadline {
  font-size: 1.1rem;
  color: var(--avocado-green);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-btn {
  display: inline-block;
  background: #3f2b17;
  color: #fff;
  padding: 0.9em 2.2em;
  border: none;
  border-radius: 2em;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(28, 57, 39, 0.08);
  cursor: pointer;
}
.hero-btn:hover, .hero-btn:focus {
  background: var(--dark-green);
  color: var(--soft-beige);
}

/* Card Styles */
.card {
  background: var(--soft-beige);
  border: 1px solid var(--avocado-green);
  border-radius: 1.2em;
  box-shadow: 0 2px 8px rgba(28, 57, 39, 0.06);
  padding: 1.5rem;
  margin: 1rem 0;
}

/* Footer */
footer {
  background: var(--dark-green);
  color: var(--soft-beige);
  padding: 1.2rem 0;
  text-align: center;
  margin-top: auto;
}
.footer-links a {
  color: var(--soft-beige);
  text-decoration: none;
  margin: 0 0.5em;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--avocado-green);
}

/* Responsive Flex Containers */
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Responsive Design */
@media (min-width: 600px) {
  .hero h1 {
    font-size: 3.2rem;
  }
  .subheadline {
    font-size: 1.3rem;
  }
  .card {
    padding: 2.5rem;
  }
}

@media (min-width: 900px) {
  .hero {
    padding: 4rem 1rem 5rem 1rem;
  }
  .flex-row {
    gap: 2.5rem;
  }
  .flex-col {
    gap: 2.5rem;
  }
}

/* Arimo font for Seed Wall and related buttons */
.arimo-btn, .hero-btn.seed-wall-btn {
  font-family: 'Arimo', Arial, sans-serif !important;
}

.page-wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .hero h1, h1 {
    font-size: 1.5rem !important;
    margin-top: 2.5rem !important;
  }
  h2 {
    font-size: 1.1rem !important;
  }
  .subheadline {
    font-size: 1rem !important;
  }
  .aboutus-container, .seed-wall, .thanks-container, main {
    padding: 0.5rem !important;
    margin-top: 2.5rem !important;
  }
  .button-row {
    flex-direction: column;
    gap: 0.7em;
    margin-top: 1rem;
  }
  .hero-btn, .home-btn, .menu-btn {
    font-size: 1rem;
    padding: 0.7em 1.2em;
    min-width: 44px;
    min-height: 44px;
  }
  .home-btn, .menu-btn {
    top: 0.5rem;
    left: 0.5rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.5em;
    font-size: 1rem;
  }
  footer {
    padding: 0.7rem 0 0.7rem 0.5rem;
    text-align: left;
    position: relative;
  }
  footer > a {
    position: static !important;
    display: block;
    margin-bottom: 0.5em;
  }
  .translate-btn, .feedback-badge {
    display: none !important;
  }
  .footer-avocado-link {
    position: static;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5em;
    font-size: 1.1rem;
  }
}

.footer-avocado-link {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  color: #fff;
  font-family: 'Impact', Impact, Charcoal, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 10;
} 
