/*
Theme Name: Rooting for Childhood
Description: Children's nature learning sessions - Under Construction theme
Author: Your Name
Version: 1.0
Text Domain: rooting-for-childhood
*/

/* Reset and base styles from original HTML */
:root {
  --p376: #84BD00;
  --ink: #1f2937;
  --muted: #4b5563;
  --paper: #fff;
  --cream: #fbfaf6;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.wrap {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.card {
  max-width: 860px;
  width: 100%;
  text-align: center;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  padding: 28px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.brand img {
  width: min(220px, 50vw);
  height: auto;
  display: block;
}

h1 {
  margin: 10px 0 6px;
  font-size: clamp(28px, 5.8vw, 44px);
  font-weight: 900;
  color: var(--p376);
  letter-spacing: .3px;
}

.lead {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 20px);
}

.rule {
  width: 140px;
  height: 4px;
  background: var(--p376);
  margin: 16px auto 0;
  border-radius: 999px;
}

footer {
  margin-top: 22px;
  color: #6b7280;
  font-size: .95rem;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #0b0f14;
    color: #e5e7eb;
  }
  
  .card {
    background: #0f141a;
    border-color: #1f2937;
    box-shadow: 0 12px 28px rgba(0,0,0,.55);
  }
  
  .brand img {
    filter: none;
  }
  
  .lead {
    color: #9ca3af;
  }
}

/* WordPress-specific styles */
.alignwide {
  max-width: 1200px;
}

.alignfull {
  max-width: none;
}