:root {
  --dark:    #111111;
  --green:   #78c043;     /* Matches the bright leaf in your new logo */
  --green-d: #5e9c30;
  --light:   #f8f9fa;
  --text:    #222222;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
  background: var(--dark);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  padding: 1rem 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-img {
  height: 85px;
  width: auto;
  max-width: 280px;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover { color: var(--green); }

/* Hero - updated background (elegant paver patio) */
.hero {
  background: url('https://elispaverpatios.com/wp-content/uploads/2026/02/outdoor-living-spaces-Silverdale-backyard-upgrade-1024x768.jpg') center/cover no-repeat;
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  margin-bottom: 1rem;
  color: var(--green);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.tagline { font-size: clamp(1.4rem, 4vw, 2rem); margin-bottom: 0.8rem; }
.subtag { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.95; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.25s;
}

.primary {
  background: var(--green);
  color: black;
}

.primary:hover {
  background: var(--green-d);
  transform: translateY(-2px);
}

.btn.large { padding: 1.2rem 3rem; font-size: 1.3rem; }

/* Sections */
.section { padding: 5rem 0; }

h2 {
  font-size: 2.6rem;
  color: var(--green);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 3rem;
  font-style: italic;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  font-weight: 600;
  font-size: 1.15rem;
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* About & Contact */
.about-section { background: var(--dark); color: white; }
.about-section h2 { color: var(--green); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .logo-img { height: 65px; }
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.95rem;
}

footer a { color: var(--green); }