/* ===== Reset & Base ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111827;           /* default text: near black */
  background: #ffffff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 90px 0;
}

h1, h2, h3 {
  color: #111827;          /* headings default dark */
  font-weight: 600;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

ul {
  list-style: none;
}

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

/* ===== Header & Navigation ===== */

.site-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  max-height: 72px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #111827;
  transition: color 0.2s ease;
}

/* Green from logo – adjust if you want a different hex */
:root {
  --brand-green: #AEA67B;
}

.nav a:hover {
  color: var(--brand-green);
}

/* Header CTA button */
.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--brand-green);
  color: #ffffff !important;
  border: 1px solid var(--brand-green);
  font-weight: 600;
}

.nav-cta:hover {
  background: #388E3C;
  border-color: #388E3C;
}

/* ===== Hero ===== */

.hero {
  background: var(--brand-green);
  color: #ffffff;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero .container {
  max-width: 980px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;   /* increased size */
  font-weight: 500;
  margin-bottom: 2.25rem;
  color: #e5f6e8;      /* slightly lighter than pure white */
}

/* Hero call buttons row */

.hero-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.hero-service {
  position: relative;
}

/* White call buttons */
.hero-call {
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.16);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.hero-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background: #f3f4f6;
}

/* Hover details panel */
.hero-service-details {
  display: none;
  position: absolute;
  top: 115%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #111827;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  min-width: 220px;
  max-width: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  text-align: left;
  z-index: 10;
}

.hero-service-details ul {
  margin: 0;
}

.hero-service-details li {
  padding: 0.25rem 0;
}

/* Show details on hover */
.hero-service:hover .hero-service-details {
  display: block;
}

/* ===== Sections (About, Contact, etc.) ===== */

.section {
  background: #ffffff;
}

.section-alt {
  background: #f8f9fa;
}

.section > .container > p,
.section-alt > .container > p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* About subsection ("How I work") */

.about-subsection {
  max-width: 780px;
  margin: 2.5rem auto 0;
}

.subheading {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.about-subsection p {
  text-align: center;
  margin-bottom: 0.85rem;
}

.about-list {
  margin-top: 0.5rem;
}

.about-list li {
  padding: 0.35rem 0;
  padding-left: 1.4rem;
  position: relative;
}

/* Optional checkmark bullets for How I Work */
.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #111827;
}

/* ===== Contact ===== */

.contact-line a {
  color: var(--brand-green);
  font-weight: 500;
}

.contact-line a:hover {
  text-decoration: underline;
}

.note {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

/* ===== Footer ===== */

.site-footer {
  background: #f9fafb;
  color: #6b7280;
  text-align: center;
  padding: 30px 0;
  font-size: 0.85rem;
  border-top: 1px solid #e5e7eb;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 90px 16px 70px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  section {
    padding: 70px 0;
  }

  .hero-service-details {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
