/* =========================
   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 0;
}

.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;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  width: 100%;
  height: 670px;
  background-image: url("../img/firstpic.png");
  background-size: cover;
  background-position: center;
  

}

.hero-overlay {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 60px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-overlay p {
  font-size: 20px;
  letter-spacing: 2px;
}

/* =========================
   BANNER 1
========================= */
.banner1 {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 80vh;
  width: 100%;
  max-width: 100vw;
}

.banner1-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner1-content h1 {
  font-size: 50px;
  margin-bottom: 30px;
}

.banner1-content p {
  font-size: 20px;
  max-width: 480px;
  margin-bottom: 20px;
}

.banner1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   BANNER 2
========================= */
.banner2 {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 80vh;
  width: 100%;
  max-width: 100vw;
}

.banner2-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner2-content h2 {
  font-size: 50px;
  margin-bottom: 30px;
}




.banner2-content ul {
  padding-left: 20px;
}

.banner2-content li {
  font-size: 20px;
  margin-bottom: 12px;
}

.banner2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   WHY HMK
========================= */
.why-hmk {
  padding: 150px 20px;
  text-align: center;
}

.why-hmk h2 {
  font-size: 48px;
  margin-bottom: 60px;
}

.pill-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.pill {
  border: 5px solid #5f8574;
  border-radius: 999px;
  padding: 15px 36px;
  font-size: 30px;
  max-width: 420px;
 
}

/* =========================
   FEATURED WORKS
========================= */
.featured-works {
  background: #c1aa8f;
  padding: 100px 20px;
  text-align: center;
}

.featured-works h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 60px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}




 


.work-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px black;
}

.view-more-btn {
  padding: 18px 48px;
  background: #5f8574;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 18px;
}




/* =========================
   ABOUT
========================= */

.handmark-logo {
  background-color: #b8a185;
  display: flex;
  justify-content: center;
 
}

.handmark-logo img {
  background-color: #b8a185;
  width: 500px;
 padding-top: 60px;
}


.about-hmk {
  background: #b8a185;
  
}



.about-hmk p {
  font-size: 24px;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}



/* =========================
   CTA
========================= */
.cta-section {
  background-image: url("../img/footerbannerpic.png");
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.cta-content {
  padding: 60px 80px;
  color: #ffffff;
  max-width: 700px;
}

.cta-content h2 {
  font-size: 50px;
  margin-bottom: 30px;
}

.cta-content p {
  font-size: 30px;
  margin-bottom: 40px;
}

.cta-btn {
  padding: 18px 44px;
  background: #5f8574;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #5f8574;
  padding: 30px;
  text-align: center;
  color: #ffffff;
}


 

/* =========================
   RESPONSIVE FIXES
========================= */

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
  .hero {
    height: 300px;
  }

}


@media (max-width: 320px) {
 .cta-btn {
  display: flex;
  justify-content: center;
  
}


.hero-overlay h1 {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}





.pill {
  border: 5px solid #5f8574;
  border-radius: 999px;
  padding: 15px 36px;
  font-size: 20px;
  max-width: 420px;
 
}
}



@media (max-width: 768px) {
  .banner1,
  .banner2 {
    grid-template-columns: 1fr;
  }

  .banner1-content,
  .banner2-content {
    padding: 40px 24px;
  }

  .banner1-content h1 {
    font-size: 28px;
  }

  .banner2-content h2 {
    font-size: 26px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    padding: 40px 24px;
  }


  .pill {
  border: 5px solid #5f8574;
  border-radius: 999px;
  padding: 15px 36px;
  font-size: 20px;
  max-width: 300px;
 
}

.hero-overlay h1 {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}


}

@media (max-width: 375px) {
  .banner1-content,
  .banner2-content {
    padding: 32px 20px;
  }



}
