:root {
  --bg: #f6fbf6;
  --card: #ffffff;
  --accent: #28a745;
  
  --muted: #67727a;
  --maxw: 1100px;
  --radius: 12px;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: #0b2b11;
}

.inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px;
  
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  background: linear-gradient(90deg, var(--accent), #1f8f3a);
  color: white;
  position: sticky;
  top: 0;
  z-index: 50;
}


.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 100px;          /* ⬆ bigger */
  height: 100px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
 
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;         /* keeps logo proportions */
  padding: 6px;                /* breathing room */
}
@media (max-width: 900px) {
  .logo {
   width: 70px;
    height: 70px;
  }

  .logo-img {
    padding: 2px;
  }
  @media (max-width: 600px) {
  .logo {
     width: 100%;
  height: 100%;
    border-radius: 12px;
  }

  .logo-img {
    padding: 1px;
  }
}

}
.brand-text h1 {
  margin: 0;
  font-size: 18px;
}

.brand-text p {
  margin: 0;
  font-size: 13px;
  opacity: 0.95;
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav a {
  color: white;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  opacity: 0.95;
 
  } 
.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
    opacity: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 6px 18px rgba(40, 167, 69, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--accent-2);
  color: #111;
}

.btn-cta {
  background: #111;
  color: var(--accent-2);
  font-weight: 700;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;            /* BIG visual impact */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-text h2,
.hero-text p {
  position: relative;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 1;
}


  .hero-image {
  position: absolute;
  inset: -20px;                /* prevents edge cropping */
  background-image: url("image/Lawn maintenance on a sunny day.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: brightness(0.55);
  transform: scale(1.08);      /* professional zoom look */
  animation: heroZoom 22s ease-in-out infinite;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  padding: 60px 24px;
  text-align: center;
  color: white;
}

.hero-text {
  max-width: 620px;
}

.hero-text h2 {
  font-size: 36px;
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero-text p {
  margin: 0 0 16px;
  opacity: 0.95;
}
@keyframes heroZoom {
  0% {
    transform: scale(1.08) translateX(0);
  }
  50% {
    transform: scale(1.15) translateX(-20px);
  }
  100% {
    transform: scale(1.08) translateX(0);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero-image {
    transform: scale(1.2);
    animation: none; /* smoother on mobile */
  }

  .hero-text h2 {
    font-size: 28px;
  }
}
/* Container Sections */
.container {
  background: var(--card);
  margin: 20px auto;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(10,30,10,0.04);
}

h3 {
  margin-top: 0;
  text-align: center;
  font-size: 26px;
  color: var(--accent);
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.card {
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(40,167,69,0.06), rgba(40,167,69,0.02));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(10,60,20,0.06);
}

/* Quote Form */
form {
  max-width: 840px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 12px;
  display: block;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="date"],
select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e2e8e2;
  font-size: 16px;
}

.small input {
  width: 180px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.quote-output {
  margin-top: 14px;
  font-weight: 800;
  font-size: 18px;
  color: #0b2b11;
}

/* Gallery */
/* =========================
   Moving Gallery (Marquee)
   ========================= */

.gallery-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 16px;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollGallery 30s linear infinite;
}

.gallery-marquee:hover .gallery-track {
  animation-play-state: paused; /* pause on hover */
}

.photo {
  min-width: 220px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animation */
@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.test {
  background: #fffef0;
  padding: 14px;
  border-left: 6px solid var(--accent);
  border-radius: 8px;
}

/* Footer */
.site-footer {
  background: #0b2b11;
  color: #e9f9e9;
  padding: 18px 0;
  text-align: center;
  margin-top: 20px;
}

/* More Reviews Button */
.more-reviews {
  text-align: center;
  margin-top: 20px;
}

.more-reviews .btn {
  background: #00994d;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: 0.3s;
}

.more-reviews .btn:hover {
  background: #007a3d;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .nav {
    display: flex;
    justify-content: center;    
  }

  .brand-text h1 {
    font-size: 16px;
  }

  h3 {
    font-size: 22px;
  }
}
/* =========================
   Mobile & Small Screens
   ========================= */
@media (max-width: 600px) {

  body {
    font-size: 15px;
  }
  nav a {
    padding: 6px 8px;
    font-size: 13px;
  }
  nav {
    gap: 8px;

  }
  .inner {
    padding: 14px;
  }

  /* Header */
  .site-header {
    padding: 10px 0;
  }

  .logo {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .brand-text h1 {
    font-size: 15px;
  }

  .brand-text p {
    font-size: 12px;
  }

  /* Hero */
  .hero {
    min-height: 260px;
  }

  .hero-inner {
    padding: 20px;
    gap: 18px;
  }

  .hero-text h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 15px;
  }

  /* Buttons */
  .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .button-row {
    flex-direction: column;
    gap: 10px;
  }

  /* Containers */
  .container {
    padding: 18px;
    margin: 16px auto;
  }

  h3 {
    font-size: 22px;
  }

  /* Service Cards */
  .card {
    padding: 16px;
  }

  /* Forms */
  input[type="text"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  select {
    font-size: 15px;
    padding: 12px;
  }

  .small input {
    width: 100%;
  }

  /* Gallery */
  .photo {
    height: 110px;
    font-size: 14px;
  }

  /* Testimonials */
  .test {
    font-size: 14px;
  }

  /* Footer */
  .site-footer {
    font-size: 14px;
    padding: 16px 10px;
  }
}
@media (max-width: 600px) {
  .hero-image {
    background-image:  url("image/Lawn\ maintenance\ on\ a\ sunny\ day.png");
}
}

.photo1 {
  background-image: url("image/Lawn maintenance on a sunny day.png");
  background-size: cover;
  background-position: center;
} 


.social-links img {
  width: 36px;
  margin: 0 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border-radius: 50%;
}

.social-links img:hover {
  transform: scale(1.2);
  background-color: rgba(255, 255, 255, 0.2);
}