﻿:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f0f4f0;
  color: #1e293b;
  line-height: 1.6;
  --primary-color: #2d5a3d;
  --primary-light: #4a7c5a;
  --primary-dark: #1f3d2a;
  --accent: #7c9a7a;
  --background: #c6fdc6;
  --surface: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, var(--background) 0%, #e8f5e8 100%); */
  padding: 2rem 0;
  width: 100%;
}

.coming-soon-content {
  text-align: center;
  width: 100%;
  padding: 2rem 1rem;
}

.title-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo {
  height: 100px;
  width: auto;
}

.coming-soon-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.subtitle {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin: 0 0 1.5rem;
  font-weight: 600;
}

.description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  line-height: 1.7;
}

.features {
  display: grid;
  gap: 1.5rem;
  margin: 2rem auto;
  width: 50%;
}

.feature {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(45, 90, 61, 0.1);
  border: 1px solid rgba(45, 90, 61, 0.05);
}

.feature h3 {
  margin: 0 0 0.5rem;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.feature p {
  margin: 0;
  color: var(--text-muted);
}

.contact {
  margin: 2rem 0 0;
  color: var(--text-muted);
}

.contact a {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 600px) {
  .features {
    width: 100%;
  }
}
