/*
Theme Name: Lane to Love - Editable Homepage
Theme URI: https://lanetolove.com/
Author: Robert Lane
Author URI: https://lanetolove.com/
Description: A warm, editable WordPress theme for LanetoLove.com. Designed for a static Home/Profile page edited in the WordPress page editor.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lanetolove
Tags: custom-logo, one-column, custom-menu, featured-images, block-patterns
*/

:root {
  --bg: #fffaf6;
  --panel: #ffffff;
  --ink: #1d1b1b;
  --muted: #635d5d;
  --accent: #7d2f45;
  --accent-dark: #5f2134;
  --line: #eadfd9;
  --soft: #f7ece6;
  --shadow: 0 20px 50px rgba(75, 34, 34, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}
a { color: var(--accent); }
a:hover { color: var(--accent-dark); }
.site-header {
  background: rgba(255, 250, 246, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}
.container, .wp-block-group.container {
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(125, 47, 69, 0.22);
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-tagline {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 4px;
}
.main-nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.98rem;
}
.main-nav a:hover { color: var(--accent); }
.button, .wp-block-button__link, input[type='submit'], button {
  display: inline-block;
  border-radius: 999px !important;
  background: var(--accent) !important;
  color: #fff !important;
  padding: 12px 20px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
}
.button:hover, .wp-block-button__link:hover, input[type='submit']:hover, button:hover {
  background: var(--accent-dark) !important;
}
.hero, .wp-block-group.hero {
  padding: 82px 0 60px;
  background: linear-gradient(135deg, #fffaf6 0%, #f7ece6 100%);
}
.hero-grid, .wp-block-columns.hero-grid {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}
.eyebrow, .wp-block-heading.eyebrow, p.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  font-weight: 700;
  font-size: .82rem;
  margin-bottom: 12px;
}
h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 700px; }
.card, .wp-block-group.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.card ul { margin: 0; padding-left: 20px; }
.section, .wp-block-group.section { padding: 68px 0; }
.section.alt, .wp-block-group.alt { background: var(--soft); }
.grid-3, .wp-block-columns.grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2, .wp-block-columns.grid-2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.notice, .wp-block-group.notice {
  background: #fff;
  border-left: 5px solid var(--accent);
  border-radius: 18px;
  padding: 20px;
  color: var(--muted);
}
.form-shell, .wp-block-group.form-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-shell input,
.form-shell textarea,
.form-shell select,
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.form-shell label { font-weight: 700; display: block; margin: 14px 0 6px; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  background: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.content-page { padding: 60px 0; }
.content-page article.standard-page {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.profile-homepage .entry-content > *:first-child { margin-top: 0; }
.wp-block-column { min-width: 0; }
@media (max-width: 820px) {
  .header-inner, .main-nav ul { flex-direction: column; align-items: flex-start; }
  .hero-grid, .wp-block-columns.hero-grid, .grid-2, .wp-block-columns.grid-2, .grid-3, .wp-block-columns.grid-3 { grid-template-columns: 1fr !important; }
  .hero { padding-top: 50px; }
}
