/*
Theme Name: Your Thrive Coaching Theme
Theme URI: https://yourthrivecoach.com/
Author: Your Thrive Coach
Description: Minimal companion theme for the private Your Thrive Coaching Platform.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.8
Text Domain: your-thrive-coaching-theme
*/

:root {
  --ytc-page-bg: #f6f8fb;
  --ytc-page-text: #152033;
  --ytc-page-muted: #66748a;
  --ytc-page-line: #dce4ef;
  --ytc-page-blue: #1868db;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  margin: 0;
  background: var(--ytc-page-bg);
  color: var(--ytc-page-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--ytc-page-blue); }
.ytc-site-header {
  padding: 18px clamp(18px, 4vw, 44px);
  background: #fff;
  border-bottom: 1px solid var(--ytc-page-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ytc-site-brand {
  text-decoration: none;
  color: var(--ytc-page-text);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 20px;
}
.ytc-site-main {
  width: min(1500px, calc(100% - 28px));
  margin: 22px auto 42px;
}
.ytc-standard-content {
  background: #fff;
  border: 1px solid var(--ytc-page-line);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 18px 50px rgba(17, 35, 64, .08);
}
.ytc-standard-content h1 {
  letter-spacing: -0.05em;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}
.ytc-site-footer {
  padding: 24px;
  color: var(--ytc-page-muted);
  text-align: center;
}
