:root {
  --green: #3f5c4b;
  --beige: #efe6d6;
  --dark: #1f1f1f;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Text', serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
 font-weight: 450;
}


}

/* NAV */

.site-header {
  background: var(--beige);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link img {
  height: 70px;
  display: block;
 transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-link:hover img {
  transform: scale(1.03);
}

nav a {
  color: var(--dark);
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.45rem 0.9rem;
  border: 2px solid var(--green);
  border-radius: 6px;
  transition: all 0.2s ease;
}

nav a:hover {
  background: var(--green);
  color: white;
}


/* HERO */

.hero {
  background-image: url("images/hero-topo.png");
  background-size: cover;
  background-position: center;
  padding: 4rem 1rem;
  text-align: center;
  color: #f4efe6;
}

.hero-inner {
  max-width: 650px;
  margin: auto;
}

/* HERO CALL BUTTON */

.hero-call-btn {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.75rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--green);
  background: #f4efe6;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.hero-call-btn:hover {
  background: white;
  transform: translateY(-1px);
}


/* primary button */

.hero-buttons .primary {
  background: var(--green);
  color: white;
  border: 2px solid var(--green);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;   /* controls spacing between buttons */
  flex-wrap: wrap;
  margin-top: 1.2rem;
}


/* secondary button */

.hero-buttons .secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
}

/* hover effects */

.hero-buttons .primary:hover {
  background: #2f463a;
  border-color: #2f463a;
}

.hero-buttons .secondary:hover {
  background: white;
  color: var(--green);
}


/* HOME */

.home-services {
  background: var(--beige);
  padding: 4rem 1rem;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}

/* SERVICES */

.services-wrapper {
  background: var(--beige);
  padding: 4rem 1rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}


.home-services .service-card {
  padding: 1.6rem;
}

.card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

/* GALLERY */

.gallery {
  background: var(--beige);
  padding: 4rem 1rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Homepage Services section title */

.home-services h2 {
  color: var(--green);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 800;
}

/* Homepage service card titles */

.home-services .service-card h3 {
  color: var(--green);
  margin-top: 0;
}

.services-wrapper h2 {
  color: var(--green);
}

/* ===============================
   HERO LOGO STYLE
   =============================== */

.hero-logo {
  padding: 5rem 1rem 4rem 1rem;
}

.hero-logo-image {
  width: min(520px, 85%);
  height: auto;
  display: block;
  margin: 0 auto 1.8rem auto;
}

.hero-tagline {
  color: #f4efe6;
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 620px;
  margin: auto;
  line-height: 1.5;
  letter-spacing: 0.01em;
  opacity: 0.85;

}

/* HOMEPAGE SERVICES OVERVIEW */

.services-overview {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .services-overview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-group h3 {
  color: var(--green);
  margin-bottom: 0.6rem;
}

.service-group ul {
  padding-left: 18px;
  margin-top: 0.6rem;
}

.service-group li {
  margin-bottom: 0.3rem;
}

.featured {
  font-weight: 600;
  color: var(--green);
  margin: 0.3rem 0;
  font-size: 1.05rem;
}


/* SERVICE CATEGORY CARDS */

.services-overview {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .services-overview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card-column {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}




/* headings */

.service-card-column h3 {
  color: var(--green);
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
  font-weight: 600;
}


/* featured services */

.featured {
  font-weight: 600;
  color: var(--green);
  margin: 0.3rem 0;
  font-size: 1.05rem;
}


/* list styling */

.service-card-column ul {
  list-style: none;
  padding: 0;
  margin-top: 0.8rem;
}

.service-card-column li {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.service-card-column li::before {
  content: "– ";
}


.service-card-column li {
  margin-bottom: 0.3rem;
}

/* SERVICE CARD BUTTON */

.service-btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.6rem 1.3rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border: 2px solid var(--green);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.service-btn:hover {
  background: var(--green);
  color: white;
}


/* ABOUT SECTION */

.about {
  background: white;
  padding: 4rem 1rem;
}

.about-inner {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

.about h2 {
  color: var(--green);
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.2;
  font-weight: 800;
}


.about p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* FOOTER */

.site-footer {
  background: var(--green);
  color: #f4efe6;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.footer-col p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.footer-col a {
  color: #f4efe6;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
}

/* SERVICE PAGE SECTIONS */

.service-section {
  padding: 4rem 1rem;
}

.service-section h2 {
  color: var(--green);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-intro {
  max-width: 700px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-section ul {
  margin-bottom: 1.2rem;
}

.featured-heading {
  margin-top: 1.5rem;
}

.featured-list li {
  font-weight: 600;
  color: var(--green);
}

.service-cta {
  margin-top: 1.5rem;
}

/* SERVICE ITEM COLUMNS */

.service-columns {
  display: grid;
  gap: 1.2rem 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .service-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.service-item h4 {
  margin-bottom: 0.25rem;
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 1000;
}


.service-item p {
  margin: 0;
  line-height: 1.5;
  opacity: 0.65;
  font-size: 1rem;
  font-weight: 500;
}


/* SERVICES PAGE BACKGROUND */

.services-page-wrapper {
  background: var(--beige);
  padding: 1rem 5rem;
}



.service-card-block {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 2.5rem 2.2rem;
  margin-bottom: 3rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);

}

/* SERVICE CATEGORY HEADINGS */

.service-category-title {
  color: var(--green);
  font-size: 2.4rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.2;
  font-weight: 800;
}



.service-card-block:last-child {
  margin-bottom: 4rem;
}


