/* ================================
   Brand Color System
==================================*/
:root {
  --primary: #4AA84A;          /* Fresh Turf Green */
  --secondary-blue: #1C5D99;   /* Pacific Deep Blue */
  --secondary-brown: #6E5A45;  /* Earthline Brown */
  --accent-amber: #F4C26A;     /* Warm Glow Amber */

  --neutral-white: #FFFFFF;
  --neutral-black: #1A1A1A;
  --neutral-silver: #E7EAED;

  --page-bg: #ECF5EC;  /* soft but clearly tinted light green */

    /* Premium UI tokens */
  --radius-lg: 16px;
  --radius-md: 12px;

  --shadow-soft: 0 10px 26px rgba(0,0,0,.08);
  --shadow-hover: 0 14px 34px rgba(0,0,0,.12);

  /* Make the background more premium/clean */
  --page-bg: #F7FBF7;  /* lighter than the current green tint */


}

/* ================================
   Global Typography & Body
==================================*/

section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}


.container {
  max-width: 1200px;
}

html, body {
  height: 100%;
}

#footer {
  margin-top: auto;
}

body {
  background-color: var(--page-bg);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--neutral-black);
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
}

/*body::before {
  content: "";
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(45vw, 320px);   /* scalable size /*
  height: auto;
  background: url("./images/Watermark-Logo.png") center/contain no-repeat;
  opacity: 0.03;             /* faint watermark effect /*
  z-index: -1;
  pointer-events: none;
} */


h1, h2, h3, .section-title, .header-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

h1, h2 {
  color: var(--neutral-black);
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

/* Premium hover only for clickable elements */
.hover-lift {
  transition: transform .18s ease, box-shadow .18s ease;
  will-change: transform;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}


/* ================================
   Header / Navbar
==================================*/
.hdr {
  background-color: var(--neutral-white);
  border-bottom: 1px solid var(--neutral-silver);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.header-link {
  color: var(--secondary-blue);
}

.header-link:hover {
  color: var(--primary);
}

.home {
  color: var(--neutral-black);
}

.btn-hdr {
  color: var(--secondary-blue);
}

/* “Sign-up” button in header, smaller secondary accent */
.sign-up {
  background-color: var(--accent-amber);
  color: var(--neutral-black);
  border: 1px solid var(--accent-amber);
}

.sign-up:hover {
  background-color: #e0aa55;
  border-color: #e0aa55;
  color: var(--neutral-black);
}

.nav-link.active {
  color: #6c757d !important;   /* Bootstrap’s neutral gray */
  pointer-events: none;        /* disables clicking */
  cursor: default;             /* makes cursor normal instead of pointer */
  text-decoration: none;       /* prevents underline on hover */
}


/* ================================
   Hero / Main CTA
==================================*/

/* Add class="... hero-bg" to your hero container in index.html */
.hero-bg {
  background: linear-gradient(
    135deg,
    rgba(74, 168, 74, 0.23),
    rgba(28, 93, 153, 0.20)
  );
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.04);
}

/* Buttons inside hero */
.buttons {
  color: var(--neutral-white);
}

/* Primary green button */
.custom-brown {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--neutral-white);
}

.custom-brown:hover {
  background-color: #3b8a3b;
  border-color: #3b8a3b;
}

/* Outline blue button */
.custom-outline {
  color: var(--secondary-blue);
  border: 2px solid var(--secondary-blue);
  background-color: transparent;
}

.custom-outline:hover {
  background-color: var(--secondary-blue);
  color: var(--neutral-white);
}

/* Solid blue button */
.custom-solid {
  background-color: var(--secondary-blue);
  color: var(--neutral-white);
  border: 2px solid var(--secondary-blue);
}

.custom-solid:hover {
  background-color: #184f82; /* slightly darker shade for hover */
  border-color: #184f82;
  color: var(--neutral-white);
}

/* Ensure hero buttons have centered text */
.buttons.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

/* Active states */
.custom-brown:active,
.custom-brown:focus:active {
  background-color: #2f6d30;
  border-color: #2f6d30;
}

.custom-outline:active,
.custom-outline:focus:active {
  background-color: #16406b;
  border-color: #16406b;
  color: var(--neutral-white);
}

.feature-overview h5 {
    border-left: 4px solid var(--secondary-blue);
    padding-left: 8px;
}

.hero-photo {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}



/* ================================
   Carousel
==================================*/
/* Outer gray block that frames the carousel */
.carousel-container {
  padding: 24px;
  border-radius: 24px;
  background-color: var(--neutral-silver);
  max-width: 1100px;
  margin: 0 auto 4rem;
}

/* Make the inner area clip the image with rounded corners */
.carousel-inner {
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
}

/* Set a consistent height for every slide */
.carousel-item {
  height: 460px; /* tweak: 400, 450, 500 depending what looks best */
}

/* Make images fill the space nicely */
.carousel-item img,
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fill the box, crop excess */
  object-position: center;  /* keep the subject centered */
  display: block;
}

section.carousel-section {
  padding-top: 2rem;
  padding-bottom: 0;
}

/* Dark overlay attached properly & rounded */
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}

/*.no-pad {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}*/

/* ================================
   Feature Icons & Section
==================================*/
.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  color: var(--neutral-white);
}

.icon-square:hover {
  transform: none;
  box-shadow: none;
}

.bg-irrigation {
  background-color: var(--secondary-blue);
}

.bg-lighting {
  background-color: var(--accent-amber);
  color: var(--neutral-black);
}

.bg-reliable {
  background-color: var(--primary);
}

/* Light green band behind the feature section & testimonial */
.section-bg {
  background-color: #E2F1E4;  /* more visible green tint */
}

/* Long thin, premium icon bars */
.feature-icon-small {
  width: 100%;
  height: 2rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2D8C85;          /* Pure consistent teal */
  color: #ffffff;

  /* layered soft bump shadows */
  box-shadow:
    0 2px 4px rgba(0,0,0,0.15),       /* outer drop shadow */
    0 1px 0 rgba(255,255,255,0.25) inset, /* top inner highlight */
    0 -2px 4px rgba(0,0,0,0.20) inset;    /* bottom inner shadow */

  /* no motion needed */
  transition: box-shadow 0.15s ease;
}

.feature-icon-small i {
  font-size: 1.3rem;
  line-height: 1;
}

.feature-icon-small svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* Optional: Slight hover depth WITHOUT movement */
.feature-icon-small:hover {
  box-shadow:
    0 3px 6px rgba(0,0,0,0.22),
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 -1px 2px rgba(0,0,0,0.18) inset;
}

/* Optional: if you still want a pure teal variant elsewhere */
.feature-icon-small.teal {
  background: linear-gradient(140deg, #2D8C85, #1D726C);

/* Teal background for small feature icons */
  background-color: #2D8C85;  /* your premium teal */
  color: #ffffff;
}

/* ================================
   Testimonial Block
==================================*/
.blockquote {
  background-color: var(--secondary-brown);
  color: var(--neutral-white);
}

.bg-custom-brown {
  background: linear-gradient(
    135deg,
    rgba(28, 93, 153, 0.9),
    rgba(74, 168, 74, 0.9)
  );
  color: var(--neutral-white);
}

.bg-custom-brown .bi {
  color: rgba(255,255,255,0.7);  /* quote icons */
}

.bg-custom-brown .blockquote-footer {
  color: rgba(255,255,255,0.7) !important;
}


/* ================================
   Cards / Gallery
==================================*/
.card {
  border: 1px solid rgba(0,0,0,.06);
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;            /* let the card control the rounding */
}

.card-img-top {
  border-radius: 0;
  display: block;
}

.gallery .card-img-top {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


.gallery .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

/* Lightbox overlay */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.lightbox-overlay.d-none {
  display: none;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

/* Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 0, 0, 0.8);
}


/* ================================
   Contact Page
==================================*/
.feature a {
  color: var(--secondary-blue);
  text-decoration: none;
  font-weight: 500;
}

.feature a:hover {
  text-decoration: underline;
  color: var(--primary);
}

.feature.col {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;  
  color: var(--neutral-white);
}

.feature-icon.teal {
  background-color: #2D8C85;
}




.contact-form {
  background-color: var(--neutral-silver);
  border-radius: 0.75rem;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--neutral-black);
}

.contact-form .form-control {
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.contact-form .form-control:focus {
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 0.2rem rgba(28, 93, 153, 0.25);
}

.hours {
  color: var(--secondary-blue);
  text-decoration: none;
  font-weight: 500;
}

/*.hours:hover {  
  color: var(--primary);
}*/

.service-title {
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Service Area */

.service-area-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
}


/* ================================
   About Page
==================================*/

.about-hero {
  background: radial-gradient(circle at top left, rgba(28, 93, 153, 0.08), transparent 55%),
              radial-gradient(circle at bottom right, rgba(44, 163, 80, 0.06), transparent 55%);
}

.about-badge {
  background: rgba(0, 0, 0, 0.06);
  color: #343a40;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.about-highlight {
  color: var(--secondary-blue);
  font-weight: 600;
}

.about-hero-text {
  max-width: 40rem;
}

.about-hero-card {
  border-radius: 1.5rem;
  padding: 1px; /* border illusion */
  background: linear-gradient(135deg, rgba(28, 93, 153, 0.4), rgba(236, 167, 44, 0.4));
  overflow: hidden;
}

.about-hero-card-inner {
  background: #ffffff;
  border-radius: 0 0 1.4rem 1.4rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* About hero photo */
.about-hero-card img {
  width: 100%;
  max-height: 260px;      /* tweak this number if you want it taller/shorter */
  object-fit: cover;      /* crop to fill instead of squishing */
  object-position: center;
  display: block;
  border-radius: 1.4rem 1.4rem 0 0; /* match top of card, flat on bottom */
  margin-bottom: 0;
  background-color: transparent;
}


.about-stat {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-stat-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6c757d;
}

.about-stat-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #212529;
}

.about-checklist {
  list-style: none;
  padding-left: 0;
}

.about-checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.about-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Small tweaks for mobile */
@media (max-width: 767.98px) {
  .about-hero {
    text-align: left;
  }
  
  .about-hero-card {
    margin-top: 0.5rem;
  }
}

/* ================================
   Merch Page
==================================*/
.merch-asterisk {
  font-size: 0.6em;
  vertical-align: super;
  color: #6c757d;
  margin-left: 2px;
}

/* Card wrapper */
.merch .card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--neutral-white);
  box-shadow: var(--shadow-soft);
}

/* IMPORTANT: this is what hides the baked-in image edge lines */
.merch .card-img-top {
  display: block;
  width: 100%;
  height: 240px;

  /* keep image inside a “mat” so the baked borders disappear */
  background: #fff;
  padding: 14px;

  object-fit: contain;
  object-position: center;

  /* trims a few pixels off each side (optional but works well here) */
  clip-path: inset(8px);

  border: 0;
  outline: 0;
  box-shadow: none;
  border-radius: 0; /* let the card control rounding */
}

/* Clickable cards focus */
.merch-grid a:focus,
.merch-grid a:focus-visible {
  outline: none;
}

.merch-grid a:focus-visible .card {
  box-shadow: 0 0 0 4px rgba(22, 163, 144, 0.25), var(--shadow-soft);
}



/* ================================
   Footer and Footer Gradient
==================================*/
.footer-transition {
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(236, 245, 236, 0),
    rgba(28, 93, 153, 0.25)
  );
}

.gradient-background {
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary));
  color: var(--neutral-white);
}

.gradient-background a {
  color: rgba(255, 255, 255, 0.78);
}

/* Footer social link should be white (overrides .gradient-background a) */
#footer a.footer-social {
  color: rgba(255, 255, 255, 0.85);
}

#footer a.footer-social:hover {
  color: rgba(255, 255, 255, 1);
}


.gradient-background a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0.85;
  letter-spacing: 0.2px;
}

.footer-nav .nav-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

.footer-nav .nav-link:hover {
  color: var(--accent-amber);
}

.footer-nav .nav-link + .nav-link {
  margin-left: 0.25rem;
}

#footer {
    color: var(--neutral-white);
}

.footer-logo {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.footer-tagline {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-contact a {
    color: var(--neutral-white);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-nav {
    display: none; /* remove old nav bar in footer */
}

/* Facebook Tag */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-social:hover {
  color: #ffffff;
  text-decoration: none;
}
