/*
Theme Name:  LocalOrbit360
Theme URI:   https://localorbit360.com
Author:      LocalOrbit360
Author URI:  https://localorbit360.com
Description: Professional digital marketing theme for LocalOrbit360 — serving local businesses across Canada and the USA.
Version:     1.0.4
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: localorbit360
Tags:        one-page, marketing, business, green, responsive
*/

/* ─── Brand Tokens ──────────────────────────────────────────────────────────── */
:root {
  --clr-primary:        #16a34a;
  --clr-primary-dark:   #15803d;
  --clr-primary-light:  #22c55e;
  --clr-primary-bg:     rgba(22,163,74,0.10);
  --clr-dark:           #0f1624;
  --clr-dark-card:      rgba(255,255,255,0.05);
  --clr-yellow:         #facc15;
  --clr-yellow-hover:   #fde047;
  --clr-red:            #dc2626;
  --font-heading:       'Montserrat', 'Inter', sans-serif;
  --font-body:          'Inter', system-ui, sans-serif;
  --radius-lg:          1rem;
  --radius-xl:          1.5rem;
  --shadow-card:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-cta:         0 4px 14px rgba(22,163,74,0.35);
  --transition:         0.2s ease;
}

/* ─── Reset / Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

/* ─── Layout ─────────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { background: var(--clr-primary-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.07); }

.btn-yellow {
  background: var(--clr-yellow);
  color: #1a1a1a;
}
.btn-yellow:hover { background: var(--clr-yellow-hover); }

.btn-sm  { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-md  { padding: 0.75rem 1.75rem; font-size: 0.9375rem; }
.btn-lg  { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ─── Section helpers ────────────────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-primary-bg);
  color: var(--clr-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: #555;
  max-width: 640px;
  margin-inline: auto;
}

/* ─── Green underline accent ─────────────────────────────────────────────────── */
.underline-accent {
  position: relative;
  display: inline-block;
}
.underline-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 60%;
  height: 3px;
  background: var(--clr-primary);
  border-radius: 2px;
}

/* ─── Check list ─────────────────────────────────────────────────────────────── */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #374151;
  padding-block: 0.35rem;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--clr-primary-bg);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2316a34a'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ─── Star rating ────────────────────────────────────────────────────────────── */
.stars { color: #f59e0b; letter-spacing: 1px; }

/* ─── Fade-in animation ──────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ─── Accessibility ──────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
