/* Mr. Grendader - Garden App Landing Page Styles */

/* Color Palette */
:root {
  --earth-dark: #0f1a0f;
  --forest-green: #4a7c3f;
  --warm-text: #e8e0d0;
  --warm-bg: #1a2419;
  --card-bg: #1f2a1e;
  --border-subtle: #2a3a29;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--earth-dark);
  color: var(--warm-text);
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: normal;
  color: var(--warm-text);
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #5a9c4f;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
header {
  background-color: var(--warm-bg);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  color: var(--warm-text);
  font-weight: normal;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--warm-text);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--forest-green);
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero .subtext {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--forest-green);
  color: var(--warm-text);
  font-size: 1.1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #5a9c4f;
  transform: translateY(-2px);
  color: var(--warm-text);
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: var(--warm-bg);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--forest-green);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: var(--forest-green);
}

.feature-card p {
  margin-bottom: 0;
  opacity: 0.9;
}

/* How it Works */
.how-it-works {
  padding: 4rem 0;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step-number {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem;
  color: var(--forest-green);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  margin-bottom: 0;
  opacity: 0.9;
}

/* Quote Section */
.quote-section {
  padding: 4rem 0;
  background-color: var(--warm-bg);
  text-align: center;
}

.quote-section blockquote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.75rem;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.5;
}

/* Footer */
footer {
  background-color: var(--warm-bg);
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--warm-text);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--forest-green);
}

.copyright {
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Content Pages */
.content-page {
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.content-page h1 {
  margin-bottom: 2rem;
}

.content-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.content-page h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.content-page ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--forest-green);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--forest-green);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--warm-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--warm-text);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-green);
}

.submit-button {
  padding: 1rem 2.5rem;
  background-color: var(--forest-green);
  color: var(--warm-text);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #5a9c4f;
}

/* Email Link */
.email-link {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--card-bg);
  border: 1px solid var(--forest-green);
  border-radius: 6px;
  margin: 1.5rem 0;
  font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero .subtext {
    font-size: 1.1rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .quote-section blockquote {
    font-size: 1.4rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
