/*
 Theme Name: Lessons2
 Theme URI: https://lorieslessons.com/
 Description: Standalone theme mirroring the current look at lorieslessons.com with simple header, text links, and full-width footer. Auto-creates pages.
 Author: Greg & ChatGPT
 Version: 1.1.0
 Text Domain: lessons2
*/

/* === Core Variables === */
:root {
  --ll-green: #0a7a57;
  --ll-dark: #002b1e;
  --ll-text: #111827;
}

/* === Reset & Base === */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ll-text);
  background: #fff;
  line-height: 1.55;
}

h1, h2, h3 {
  margin: 0.2em 0 0.4em;
}
p {
  margin: 0.4em 0 1em;
}

a {
  color: var(--ll-green);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/* === Layout Containers === */
.ll-container {
  width: min(1100px, 92vw);
  margin: 20px auto;
}

/* === Header === */
.site-header {
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-brand img {
  height: 72px;
  width: auto;
  border-radius: 8px;
  display: block;
}
.site-title {
  font-weight: 800;
  font-size: 24px;
}

/* === Navigation === */
.site-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}
.site-nav li {
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--ll-green);
  text-decoration: underline;
}
.site-nav a:hover {
  text-decoration: none;
}

/* === Hero Section === */
.ll-hero {
  width: 100%;
  min-height: 260px;
  background: #ddd center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}
.ll-hero .inner {
  width: 100%;
  color: #fff;
  padding: 40px 16px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.5));
}
.ll-hero h1 {
  margin: 0;
  font-size: clamp(24px, 4vw, 40px);
}

/* === Card Grid === */
.ll-grid-3 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.ll-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}

/* === Gallery === */
.ll-gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.ll-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* === Footer === */
.site-footer,
.site-footer > .container,
.site-footer > .row,
.site-footer > .footer-widgets {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 18px !important;
  background: var(--ll-dark) !important;
  color: #fff !important;
  box-sizing: border-box !important;
}

.site-footer {
  margin-top: 40px;
}

.site-footer * {
  text-align: center !important;
}

/* Remove bullets from footer menus */
.site-footer ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.site-footer li {
  display: inline-block;
  margin: 0 6px;
}

/* Align footer link set */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer link colors */
.footer-links a {
  color: #fff;
  text-decoration: underline;
}
.footer-links a:hover {
  text-decoration: none;
}

/* Extra contact link spacing */
.site-footer a[href*="contact"] {
  display: inline-block;
  margin-top: 8px;
}
er-links a{ color:#fff; text-decoration:underline; } .footer-links a:hover{ text-decoration:none; }

/* === Homepage Styles for Lorie's Lessons 2 === */
.hero-section {
  background: linear-gradient(180deg, #0a7a57 0%, #0a8f62 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 0 0 15px 15px;
}

.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-title { font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.hero-subtitle { font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; color: #e8f5ee; }
.hero-button {
  display: inline-block;
  background: #fff;
  color: #0a7a57;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-button:hover { background: #f0f0f0; }
.hero-image { margin-top: 30px; border-radius: 15px; overflow: hidden; }
.hero-image img { width: 100%; height: auto; display: block; border-radius: 15px; }

/* Feature Cards */
.features-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.feature-card {
  background: #fff;
  color: #111;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: left;
}
.feature-card h3 { color: #0a7a57; margin-bottom: 8px; }
.feature-card p { margin: 0; color: #333; }

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: #f8fdfb;
}
.cta-section h2 { font-size: 1.8rem; color: #0a7a57; }
.cta-section p { color: #333; margin-bottom: 20px; }
.cta-button {
  background: #0a7a57;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}
.cta-button:hover { background: #09704e; }
