:root {
  --green-primary: #1A3D1A;
  --green-secondary: #2E5E2E;
  --green-light: #3f7a3f; /* added so hover works */
  --brown-accent: #5A4A32;
  --background-light: #F7F5F0;
  --text-main: #333333;
}

/* TOP BANNER (logo only, no overlay/box) */
.top-banner {
  width: 100%;
  text-align: center;
  background-color: #fdfdfd;
  padding: 1.5rem 0;
  border-bottom: 2px solid #e0e0e0;
}

.banner-logo {
  height: auto;
  max-width: 260px; 
  width: 100%;
  display: inline-block;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Optional older logo class if used elsewhere */
.logo-img {
  height: 70px;
  width: auto;
  background-color: #fff;
  padding: 6px;
  border-radius: 12px; /* soft corners */
}

.hero-section {
  background-image: url('images/background_pic.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: #ffffff; /* makes all text white */
}

.hero-content h1 {
  color: #ffffff; /* white H1 */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  color: #ffffff; /* white paragraphs */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
/* BODY & TYPOGRAPHY */
body {
  background-color: #ffffff;
  color: var(--text-main);
  font-family: Arial, sans-serif;
}

h1, h2, h3 {
  color: var(--green-primary);
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--green-primary);
}

/* MAIN SECTION BOXES – stronger borders around content */
.section-padding {
  padding: 2.5rem 1.75rem;
  margin: 2rem auto;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background-color: #ffffff;
}



/* NAVBAR */
.navbar-custom {
  background-color: var(--green-primary) !important;
}
.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: #fff !important;
}
.navbar-custom .nav-link:hover {
  color: #d2e6d2 !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}
.navbar-brand {
  padding: 0;
  margin-right: 1rem;
}

/* HIGHLIGHT BOX (contact sidebar) */
.highlight-box {
  background-color: #F7F5F0;
  border: 2px solid #e0e0e0;
  border-left: 4px solid var(--brown-accent);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

/* ACCENT BOX (if used elsewhere) */
.accent-box {
  background-color: var(--background-light);
  border-left: 4px solid var(--brown-accent);
  padding: 1rem;
  border-radius: 6px;
}

/* BUTTONS */
.btn-primary {
  background-color: var(--green-primary);
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background-color: var(--green-light);
  border-color: var(--green-light);
}

/* CONTACT FORM CARD */
.card-style {
  border: 2px solid #e0e0e0;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
}

/* GALLERY IMAGES */
.gallery-img {
  width: 100%;
  height: 260px;      /* or whatever your original height was */
  object-fit: cover;  /* THIS makes it zoom/crop slightly */
  border-radius: 6px;
  margin-bottom: 20px;
}

/* SERVICE AREA LIST */
.service-area-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}
.service-area-list li {
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
  position: relative;
}
.service-area-list li::before {
  content: "•";
  color: var(--green-primary);
  position: absolute;
  left: 0;
  top: 0;
}

/* VIDEO BOX (if you re-enable the video later) */
.video-box {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 6px;
  background: #fafafa;
  max-width: 800px;
  margin: auto;
}

.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background-color: #f7faf7;
  border-radius: 12px;
  border: 1px solid #dce6dc;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: #2f5e2f;
  margin-bottom: 0;
}
/* FOOTER */
footer {
  background-color: #fdfdfd;
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  font-size: 0.95rem;
}

footer a {
  text-decoration: none;
  color: #0d6efd; /* Bootstrap primary color */
}

footer a:hover {
  text-decoration: underline;
}

.subheading {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1rem;
  color: var(--brown-accent);
}
.map-frame {
  width: 100%;
  max-width: 640px;
  height: 430px;
  overflow: hidden;
  margin: 0 auto;
}

.map-frame iframe {
  width: 100%;
  height: 520px;
  border: 0;
  transform: translateY(-60px);
}
.full-width-image-wrapper {
  padding: 0;
}

.gallery-wide-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.contact-cta-box {
  background: #f7faf7;
  border: 1px solid #dce6dc;
  border-radius: 10px;
}
.highlight-box {
  max-width: 420px;
  margin: 0 auto;
}

.highlight-box .request-btn {
  display: inline-block;
  margin-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
