/*
Theme Name: Live Lighter
Theme URI: https://ll.w3connect.com
Author: Does This Help® / W3CONNECT
Description: A warm, dynamic WordPress theme for Live Lighter and Jason David Kirton's Emotion Code cyber-office. Includes the Live Lighter Scheduler directly on the homepage.
Version: 1.1.0
Text Domain: live-lighter
*/

:root {
  --ll-bg: #f7f2ea;
  --ll-surface: #fffdf8;
  --ll-ink: #22352f;
  --ll-muted: #6b766f;
  --ll-accent: #8fae9d;
  --ll-accent-dark: #4f7462;
  --ll-gold: #c7a76a;
  --ll-line: #dcd8ce;
  --ll-shadow: 0 18px 45px rgba(39, 59, 51, 0.12);
  --ll-radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ll-bg);
  color: var(--ll-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: var(--ll-accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

.ll-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 216, 206, 0.8);
}

.ll-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ll-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.ll-brand {
  display: flex;
  flex-direction: column;
  color: var(--ll-ink);
  text-decoration: none;
}
.ll-brand strong { font-size: 1.25rem; letter-spacing: 0.02em; }
.ll-brand span { color: var(--ll-muted); font-size: 0.82rem; }

.ll-menu { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.ll-menu-wrap { margin-left: auto; }
.ll-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 12px;
  background: var(--ll-surface);
  color: var(--ll-ink);
  border: 1px solid var(--ll-line);
  box-shadow: none;
  font-size: 1.5rem;
}
.ll-menu-toggle:hover { background: var(--ll-surface); color: var(--ll-ink); }

.ll-menu a { font-weight: 650; }
.ll-menu .ll-button { color: white; }

.ll-button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ll-accent-dark);
  color: white;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(79, 116, 98, 0.18);
}
.ll-button:hover,
button:hover,
input[type="submit"]:hover { background: #3d5e4f; text-decoration: none; }

.ll-hero {
  padding: 88px 0 54px;
  background:
    radial-gradient(circle at top right, rgba(199,167,106,.20), transparent 32%),
    radial-gradient(circle at left center, rgba(143,174,157,.22), transparent 28%);
}
.ll-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 52px;
  align-items: center;
}
.ll-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(143,174,157,.18);
  color: var(--ll-accent-dark);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.ll-hero h1 {
  margin: 18px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: .95;
  letter-spacing: -.045em;
}
.ll-hero h1 span { color: var(--ll-accent-dark); }
.ll-hero p { font-size: 1.14rem; color: var(--ll-muted); max-width: 690px; }
.ll-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.ll-button.secondary {
  background: transparent;
  color: var(--ll-ink);
  border: 1px solid var(--ll-line);
  box-shadow: none;
}
.ll-button.secondary:hover { background: var(--ll-surface); }

.ll-card {
  background: var(--ll-surface);
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  padding: 28px;
  box-shadow: var(--ll-shadow);
}
.ll-hero-card h2 { margin-top: 0; font-family: Georgia, serif; font-size: 2rem; }
.ll-hero-card ul { padding-left: 1.2rem; }
.ll-hero-card li + li { margin-top: 9px; }

.ll-section { padding: 72px 0; }
.ll-section.alt { background: rgba(255,255,255,.48); }
.ll-section-head { max-width: 760px; margin-bottom: 32px; }
.ll-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 14px;
}
.ll-section-head p { color: var(--ll-muted); font-size: 1.05rem; }

.ll-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ll-feature h3 { margin-top: 0; font-size: 1.2rem; }
.ll-feature p { margin-bottom: 0; color: var(--ll-muted); }

.ll-scheduler-shell {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 24px;
  align-items: start;
}
.ll-scheduler-note {
  position: sticky;
  top: 98px;
}
.ll-scheduler-note h3 { font-family: Georgia, serif; font-size: 2rem; margin-top: 0; }
.ll-scheduler-note p { color: var(--ll-muted); }
.ll-scheduler-box {
  background: var(--ll-surface);
  border-radius: var(--ll-radius);
  border: 1px solid var(--ll-line);
  padding: 22px;
  box-shadow: var(--ll-shadow);
}

.ll-disclaimer {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 4px solid var(--ll-gold);
  background: rgba(199,167,106,.10);
  border-radius: 12px;
  color: var(--ll-muted);
  font-size: .93rem;
}

.ll-footer {
  padding: 38px 0;
  border-top: 1px solid var(--ll-line);
  color: var(--ll-muted);
}
.ll-footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

.entry-content,
.ll-page { width: min(900px, calc(100% - 32px)); margin: 48px auto; }

@media (max-width: 860px) {
  .ll-hero-grid,
  .ll-scheduler-shell,
  .ll-grid-3 { grid-template-columns: 1fr; }
  .ll-scheduler-note { position: static; }
  .ll-menu-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .ll-menu-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    margin-left: 0;
    padding: 12px;
    background: var(--ll-surface);
    border: 1px solid var(--ll-line);
    border-radius: 16px;
    box-shadow: var(--ll-shadow);
    z-index: 9999;
  }
  .ll-menu-wrap.is-open { display: block; }
  .ll-menu { display: flex; flex-direction: column; align-items: stretch; gap: 4px; }
  .ll-menu a { display: block; padding: 12px 14px; border-radius: 10px; }
  .ll-menu .ll-button { display: flex; margin-top: 4px; }
  .ll-nav { position: relative; }
  .ll-hero { padding-top: 58px; }
}
