/* =========================
   Seed Starting Calendar
   Palette + Typography
   ========================= */

/* Design Tokens */
:root {
  /* Colors */
  --color-primary: #2F6F4E;   /* Forest Green */
  --color-sage: #A8C7B5;      /* Sage Green */
  --color-soil: #8B5E3C;      /* Warm Soil Brown */
  --color-sun: #F2C94C;       /* Soft Sun Yellow */

  /* Neutral system (for readability) */
  --color-bg: #FFFFFF;
  --color-surface: #F7F7F5;   /* slightly warm off-white */
  --color-text: #1F2937;      /* slate-ish */
  --color-muted: #6B7280;     /* muted text */
  --color-border: rgba(31, 41, 55, 0.14);

  /* Fonts */
  --font-display: "Playfair Display", serif;     /* H1/H2 etc */
  --font-ui: "Libre Franklin", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

  /* Accessibility helpers */
  --focus-ring: 0 0 0 3px rgba(242, 201, 76, 0.45); /* sun yellow w/ alpha */
}

/* Base page defaults */
* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Typography */
h1, h2 {
  font-family: var(--font-display);
  letter-spacing: 0.2px;
  margin: 0 0 0.5rem 0;
}

h1 { font-size: clamp(2rem, 2.8vw, 3rem); line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 2vw, 2.1rem); line-height: 1.2; }

h3, h4, h5, h6 {
  font-family: var(--font-ui);
  font-weight: 700;
  margin: 1.2rem 0 0.5rem;
}

p { margin: 0 0 1rem 0; }

small, .muted {
  color: var(--color-muted);
}

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

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

/* Surfaces / cards */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.panel-sage {
  background: color-mix(in srgb, var(--color-sage) 35%, white);
  border: 1px solid color-mix(in srgb, var(--color-sage) 70%, white);
  border-radius: var(--radius);
  padding: 1rem;
}

/* Header / Nav example */
.site-header {
  background: var(--color-primary);
  color: white;
  padding: 0.9rem 0;
}

.site-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  margin: 0;
}

.nav a {
  font-family: var(--font-ui);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-left: 1rem;
}
.nav a:hover {
  color: white;
  text-decoration: none;
}

/* Buttons */
.button {
  font-family: var(--font-ui);
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.button-primary {
  background: var(--color-primary);
  color: white;
}
.button-primary:hover { filter: brightness(1.05); }

.button-soil {
  background: var(--color-soil);
  color: white;
}
.button-soil:hover { filter: brightness(1.05); }

.button-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(47, 111, 78, 0.35);
}
.button-ghost:hover {
  background: rgba(47, 111, 78, 0.08);
}

/* Forms */
input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-text);
}

label {
  font-family: var(--font-ui);
  font-weight: 600;
  display: block;
  margin: 0 0 0.35rem 0;
}

/* Focus styles */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 10px;
}

/* Badges / highlights */
.badge {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.35); /* sun */
  color: #5A4100;
  border: 1px solid rgba(242, 201, 76, 0.55);
}


/* =========================
   Coming Soon Page
   ========================= */

.coming-soon-page {
  min-height: 100vh;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main split container */
.coming-soon-container {
  width: min(1100px, 92%);
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Left text panel */
.coming-soon-left {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.coming-soon-eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(47, 111, 78, 0.85);
  margin-bottom: 0.75rem;
}

.coming-soon-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.coming-soon-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* Right image panel */
.coming-soon-right {
  background: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-right img {
  max-width: 100%;
  height: auto;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Mobile adjustments */
@media (max-width: 800px) {
  .coming-soon-container {
    grid-template-columns: 1fr;
  }

  .coming-soon-right {
    order: -1;
  }

  .coming-soon-left {
    padding: 2rem;
    text-align: center;
  }

  .coming-soon-description {
    margin-left: auto;
    margin-right: auto;
  }
}
