/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
}

/* =========================
   LOGO
========================= */
.logo {
  display: flex;
  justify-content: center;
  background-color: #5f8578;
  padding: 10px ;
  padding-bottom: 17px;
}

.logo img {
  width: 50px;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  width: 100%;
  background-color: #486d60;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(24px, 8vw, 300px);
  padding: 10px;
  padding-left: 15px;
}

.nav-links li a {
  text-decoration: none;
  color: #e9f1ed;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.nav-links li a:hover {
  opacity: 0.7;
}


/* =========================
   CARPENTRY BANNER
========================= */
.carpentry-banner {
 
  width: 100%;
  height: 670px;
  background-image: url("../img/carpentrybanner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden; /* prevents side swipe */
  
}



/* Text container */
.carpentry-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Heading */
.carpentry-overlay h1 {
  color: #ffffff;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1px;
}


.about-us {
  background: #b8a185;
  
}



.about-us p {
  font-size: 24px;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  
}




/* =========================
   CARPENTRY WORK SECTION 1
========================= */
.carpentry-work1 {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

/* Inner container */
.carpentry-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  background: #5f8574;
  border-radius: 40px;
  overflow: hidden; /* prevents swipe */
}

/* LEFT PANEL */
.carpentry-left {
  width: 40%;
  padding: 60px;
  color: #ffffff;
}

.carpentry-left h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  margin-bottom: 24px;
}

.carpentry-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.carpentry-left li {
  font-size: 18px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
}

.carpentry-left li::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* RIGHT IMAGE PANEL */
.carpentry-right {
  width: 60%;
  background-image: url("../img/carpentryworks1.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 40px;
}

/* Quote Button */
.quote-btn a{
  background: #5f8574;
  color: #ffffff;
  padding: 14px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
}









/* =========================
   CARPENTRY WORK SECTION 2
========================= */
.carpentry-work2 {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

/* Inner container */
.carpentry-inner2 {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  background: #5f8574;
  border-radius: 40px;
  overflow: hidden; /* prevents swipe */
}

/* LEFT IMAGE PANEL */
.carpentry-left2 {
  width: 60%;
  background-image: url("../img/carpentryworks2.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

/* Quote Button */
.quote-btn2 {
  background: #5f8574;
  color: #ffffff;
  padding: 14px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
}

/* RIGHT CONTENT PANEL */
.carpentry-right2 {
  width: 40%;
  padding: 60px;
  color: #ffffff;
}

.carpentry-right2 h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  margin-bottom: 24px;
}

.carpentry-right2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.carpentry-right2 li {
  font-size: 18px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
}

.carpentry-right2 li::before {
  content: "•";
  position: absolute;
  left: 0;
}









/* =========================
   CARPENTRY WORK SECTION 3
========================= */
.carpentry-work3 {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

/* Inner container */
.carpentry-inner3 {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  background: #5f8574;
  border-radius: 40px;
  overflow: hidden; /* prevents swipe */
}

/* LEFT PANEL */
.carpentry-left3 {
  width: 40%;
  padding: 60px;
  color: #ffffff;
}

.carpentry-left3 h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  margin-bottom: 24px;
}

.carpentry-left3 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.carpentry-left3 li {
  font-size: 18px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
}

.carpentry-left3 li::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* RIGHT IMAGE PANEL */
.carpentry-right3 {
  width: 60%;
  background-image: url("../img/carpentryworks3.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 40px;
}

/* Quote Button */
.quote-btn3 {
  background: #5f8574;
  color: #ffffff;
  padding: 14px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
}




/* =========================
   CARPENTRY WORK SECTION 4
========================= */




/* =========================
   CARPENTRY WORK SECTION 2
========================= */
.carpentry-work4 {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

/* Inner container */
.carpentry-inner4 {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  background: #5f8574;
  border-radius: 40px;
  overflow: hidden; /* prevents swipe */
}

/* LEFT IMAGE PANEL */
.carpentry-left4 {
  width: 60%;
  background-image: url("../img/carpentryworks4.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

/* Quote Button */
.quote-btn4 {
  background: #5f8574;
  color: #ffffff;
  padding: 14px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
}

/* RIGHT CONTENT PANEL */
.carpentry-right4 {
  width: 40%;
  padding: 60px;
  color: #ffffff;
}

.carpentry-right4 h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  margin-bottom: 24px;
}

.carpentry-right4 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.carpentry-right4 li {
  font-size: 18px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
}

.carpentry-right4 li::before {
  content: "•";
  position: absolute;
  left: 0;
}


/* =========================
   FOOTER
========================= */
.site-footer {
  background: #5f8574;
  padding: 30px;
  text-align: center;
  color: #ffffff;
}


/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
  .carpentry-banner {
    height: 300px;
  }

    .carpentry-work2 {
    padding: 24px 0;
  }
}


@media (max-width: 768px) {
  .carpentry-inner {
    flex-direction: column;
    border-radius: 24px;
  }

  .carpentry-left,
  .carpentry-right {
    width: 100%;
  }

  .carpentry-left {
    padding: 32px;
  }

  .carpentry-right {
    min-height: 260px;
    padding: 24px;
    justify-content: center;
  }

  .quote-btn {
    width: 100%;
    text-align: center;
  }

  .carpentry-inner2 {
    flex-direction: column;
    border-radius: 24px;
  }

  .carpentry-left2,
  .carpentry-right2 {
    width: 100%;
  }

  /* Image on top */
  .carpentry-left2 {
    min-height: 260px;
    padding: 24px;
    justify-content: center;
  }

  /* Text below */
  .carpentry-right2 {
    padding: 32px 24px;
  }

  .carpentry-right2 h2 {
    font-size: 26px;
  }

  .carpentry-right2 li {
    font-size: 16px;
  }

  .quote-btn2 {
    width: 100%;
    text-align: center;
  }





.carpentry-inner3 {
    flex-direction: column;
    border-radius: 24px;
  }

  .carpentry-left3,
  .carpentry-right3 {
    width: 100%;
  }

  .carpentry-left3 {
    padding: 32px;
  }

  .carpentry-right3 {
    min-height: 260px;
    padding: 24px;
    justify-content: center;
  }

  .quote-btn3 {
    width: 100%;
    text-align: center;
  }






  .carpentry-inner4 {
    flex-direction: column;
    border-radius: 24px;
  }

  .carpentry-left4,
  .carpentry-right4 {
    width: 100%;
  }

  /* Image on top */
  .carpentry-left4 {
    min-height: 260px;
    padding: 24px;
    justify-content: center;
  }

  /* Text below */
  .carpentry-right4 {
    padding: 32px 24px;
  }

  .carpentry-right4 h2 {
    font-size: 26px;
  }

  .carpentry-right4 li {
    font-size: 16px;
  }

  .quote-btn4 {
    width: 100%;
    text-align: center;
  }





}

