/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f3eb;
  color: #2a3120;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  background: #e8e4d8;
  border-bottom: 1px solid #cdc9b8;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(61, 69, 48, 0.08);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #3a5230;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-img.small {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: #5f6c52;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: #5a7247;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e8e4d8 0%, #d9d5c5 50%, #cac6b6 100%);
}

.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0 0 1rem 0;
  color: #2a3120;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #3a4432;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.hero-note {
  color: #7d8971;
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: not-allowed;
  transition: all 0.2s;
  opacity: 0.7;
}

.btn-primary {
  background: #2f4127;
  color: white;
}

.btn-secondary {
  background: #f5f3eb;
  color: #3a5230;
  border: 2px solid #3a5230;
}

/* Image Placeholders */
.image-placeholder {
  background: linear-gradient(135deg, #dcd8c8, #cec9b8);
  border: 2px dashed #8a8775;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: #4a5540;
  text-align: center;
  padding: 2rem;
}

.image-placeholder span {
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.image-placeholder small {
  font-size: 0.9rem;
  color: #9ca38d;
}

.image-placeholder.small {
  min-height: 180px;
  margin-top: 1rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: #f0ede1;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2a3120;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #faf9f3;
  border: 1px solid #bab6a8;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(90, 114, 71, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2a3120;
}

.feature-card p {
  color: #4a5540;
  margin-bottom: 1rem;
}

/* Community Section */
.community {
  padding: 5rem 0;
  background: linear-gradient(to right, #e8e4d8, #f0ede1);
}

.community .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-content {
  text-align: center;
  max-width: 800px;
}

.community h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2a3120;
}

.community-content p {
  font-size: 1.1rem;
  color: #3a4432;
  margin-bottom: 2rem;
}

.community-features {
  list-style-type: disc;
  list-style-position: inside;
  padding: 0;
  margin: 1.5rem auto 0;
  text-align: center;
  max-width: fit-content;
}

.community-features li {
  padding: 0.4rem 0;
  font-size: 1.05rem;
  color: #4a5540;
  text-align: left;
  white-space: nowrap;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: #faf9f3;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2a3120;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  color: #3a4432;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #3a5230;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #7d8971;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer */
.footer {
  background: #2a3120;
  color: #d9d5c7;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: #b8bfae;
  margin-top: 0.5rem;
}

.footer-brand .logo {
  color: #8ba67d;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-column h4 {
  color: #e8ebe0;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
  color: #b8bfae;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #5f6c52;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0.25rem 0;
  color: #b8bfae;
  font-size: 0.9rem;
}

.footer-note {
  color: #9ca38d;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .header {
    padding: 0.75rem 0;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }

  .features {
    padding: 3rem 0;
  }

  .features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .community {
    padding: 3rem 0;
  }

  .community .container {
    flex-direction: column;
  }

  .community-content {
    max-width: 100%;
  }

  .community h2 {
    font-size: 2rem;
  }

  .community-content p {
    font-size: 1rem;
  }

  .community-features {
    max-width: 100%;
  }

  .community-features li {
    font-size: 1rem;
    white-space: normal;
  }

  .about {
    padding: 3rem 0;
  }

  .about h2 {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
