* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}
h1, h2 {
  font-weight: 500;
}

p {
  font-weight: 300;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
  background: #f4f4f4;
  border-bottom: 1px solid #e5e5e5;
}

/* LOGO */
.logo img {
  height: 90px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 45px;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-size: 17px;
  font-weight: 400;
}

/* APPLY BUTTON */
.apply-btn {
  background: #1f7a3a;
  color: white !important;
  padding: 14px 30px;
  border-radius: 2px;
  font-weight: 500;
  transition: 0.2s;
}

.apply-btn:hover {
  background: #16612d;
}

/* OUTER WRAPPER (creates the border space) */
.hero-wrapper {
  padding: 40px;              /* 🔥 controls border size */
  background: #f4f4f4;       /* page background */
}

/* HERO BOX */
.hero {
  background: url("../images/hero.jpg") center/cover no-repeat;
  min-height: 75vh;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  position: relative;
  border-radius: 8px;        /* optional (slightly rounded) */
  overflow: hidden;
}

/* DARK OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */
.hero-content {
  position: relative;
  color: white;
}
/* TITLE */
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* SUBTEXT */
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #1f7a3a;
  color: white;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 10px;
}

/* WHY SECTION */
.why {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.why-container {
  max-width: 800px;
  margin: auto;
}

.why h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.why h3 {
  font-size: 1.2rem;
  color: #1f7a3a;
  margin-bottom: 20px;
}

.why p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}


/* CORE SERVICES */
.core-services {
  padding: 80px 20px;
  background: #f4f4f4;
  text-align: center;
}

.core-container {
  max-width: 800px;
  margin: auto;
}

.core-services h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.core-services p {
  color: #555;
  line-height: 1.7;
}
/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

/* CARD */
.service-card {
  background: #efefef;
  padding: 40px;
  text-align: center;
}

/* CIRCLE IMAGE */
.service-image {
  width: 300px;
  height: 300px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
}

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

/* TEXT */
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

.services-page {
  max-width: 700px;
  margin: 100px auto;
  padding: 0 20px;
}

.services-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1f7a3a;
  margin-bottom: 30px;
}

.intro {
  text-align: center;
  color: #1f7a3a;
  line-height: 1.8;
  margin-bottom: 60px;
}

.service-item {
  margin-bottom: 50px;
}

.service-item h2 {
  color: #1f7a3a;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.service-item p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #222;
}

.center-btn {
  display: block;
  margin: 40px auto;
}
/* ABOUT PAGE */

.about-page {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

/* SMALL TITLE */
.about-small {
  text-align: center;
  color: #1f7a3a;
  margin-bottom: 10px;
}

/* BIG TITLE */
.about-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1f7a3a;
  margin-bottom: 30px;
}

/* BIG GREEN TEXT */
.about-intro {
  text-align: center;
  color: #1f7a3a;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 80px;
}

/* GRID */
.about-grid {
  display: flex;
  gap: 80px;
}

/* GRID TEXT */
.about-grid h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-grid p {
  line-height: 1.7;
  color: #222;
}

/* BOOKING */
.booking-section {
  text-align: center;
  padding: 60px;
}

.section-divider {
  height: 60px;
  background: #f4f4f4;
  margin-top: 80px;
}

/* FOOTER */
.footer {
  background: #f4f4f4;
  padding: 60px 80px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* LEFT */
.footer-left h2 {
  color: #1f7a3a;
  margin-bottom: 20px;
}

.footer-left p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* EMAIL */
.footer-contact a {
  color: #1f7a3a;
  text-decoration: underline;
}

/* RIGHT */
.footer-right h2 {
  color: #1f7a3a;
  margin-bottom: 20px;
}

.footer-right p {
  line-height: 1.8;
}
/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  /* HEADER */
  .header {
    padding: 15px 20px;
  }

  .logo img {
    height: 70px;
  }

  /* NAV */
  .nav {
    gap: 20px;
  }

  .nav a {
    font-size: 15px;
  }

  .apply-btn {
    padding: 10px 18px;
  }

  /* HERO */
  @media (max-width: 768px) {
  .hero-wrapper {
    padding: 20px;
  }
}
  .hero {
    min-height: 60vh;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  @media (max-width: 768px) {
  .why, .core-services {
    padding: 50px 20px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-image {
    width: 220px;
    height: 220px;
  }
}

  /* SERVICES PAGE */
  .services-page {
    margin: 60px auto;
  }

  .services-title {
    font-size: 2rem;
    text-align: center;
  }

  .intro {
    font-size: 1.1rem;
  }

  .service-item h2 {
    font-size: 1.4rem;
  }

  /* ABOUT PAGE */
  .about-page {
    margin: 60px auto;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-intro {
    font-size: 1.2rem;
  }

  .about-grid {
    flex-direction: column;
    gap: 40px;
  }

  /* BUTTONS */
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
@media (max-width: 768px) {
  .section-divider {
    margin: 50px 0;
  }
}
  /* FOOTER */
  .footer {
    padding: 40px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-left h2,
  .footer-right h2 {
    font-size: 1.5rem;
  }

}