/* B&W Elite Lawn Care - Site Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --green-dark: #1a4a1a;
  --green-mid: #2d6a2d;
  --green-bright: #4caf50;
  --green-light: #e8f5e9;
  --yellow-accent: #c8d400;
  --black: #111111;
  --gray-dark: #333333;
  --gray-mid: #666666;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--yellow-accent); }

.nav-cta {
  background: var(--green-mid);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--green-bright) !important; color: var(--white) !important; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--green-mid);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: background 0.2s;
}

.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* SECTION LAYOUT */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--green-dark); color: var(--white); }

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

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}

.section-dark .section-label { color: var(--yellow-accent); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }

h2 {
  font-size: 2.4rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-dark h2 { color: var(--white); }

.section-intro {
  font-size: 1.1rem;
  color: var(--gray-mid);
  max-width: 620px;
  margin-bottom: 3rem;
}

.section-dark .section-intro { color: rgba(255,255,255,0.8); }

/* FOOTER */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 60px; margin-bottom: 1rem; }

.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-col ul a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-col ul a:hover { color: var(--yellow-accent); }

.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  h2 { font-size: 1.8rem; }
}
