@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins.ttf') format('woff2');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 2
}

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 3;
}

.navbar .logo {
  color: #fff;
  font-weight: 600;
  font-size: 2.1rem;
  text-decoration: none;
}

.navbar .logo img {
  width: auto;
  height: 80px;
}

.navbar .logo span {
  color: #C06B3E;
}

.navbar .menu-links {
  display: flex;
  list-style: none;
  gap: 35px;
  z-index: 6;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
  z-index: 16;
}

.navbar a:hover {
  color: #C06B3E;
}

.hero-section {
  margin: 25vh 34vh 0vh 34vh;
  /*height: 100vh;*/
  /*background-image: url("https://images.unsplash.com/photo-1505843513577-22bb7d21e455?q=80&w=1932&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");*/
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: flex-start;
  padding: 0 20px;
  /*overflow-y: auto;*/
}

/*.hero-section::before {*/
/*  content: "";*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgba(0, 0, 0, 0.65); !* Black overlay with 50% opacity *!*/
/*  z-index: 1;*/
/*}*/

.hero-section .content {
  /*max-width: 600px;*/
  margin: 0 auto;
  width: 100%;
  color: #fff;
  position: relative;
  z-index: 2; /* Make sure the content is above the overlay */
}

.hero-section .content h2 {
  font-size: 3rem;
  max-width: 600px;
  line-height: 70px;
}

.hero-section .content p {
  font-weight: 300;
  /*max-width: 600px;*/
  margin-top: 15px;
}

.hero-section .content button {
  background: #fff;
  padding: 12px 30px;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: 38px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
  pointer-events: auto;
}

.hero-section .content button:hover {
  color: #fff;
  background: #C06B3E;
}

.hero-section .testimonials {
  color: white;
  margin-top: 20px; /* adjust as needed */
}

.hero-section .names {
  text-align: right;
  color: white;
}

#close-menu-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  display: none;
}

#hamburger-btn {
  color: #fff;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  header {
    padding: 10px;
  }

  header.show-mobile-menu::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index:10;
  }

  .navbar .logo {
    font-size: 1.7rem;
    z-index: 0;
  }


  #hamburger-btn, #close-menu-btn {
    display: block;
  }

  .navbar .menu-links {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 70px 40px 0;
    transition: left 0.2s ease;
    z-index: 10;
  }

  header.show-mobile-menu .navbar .menu-links {
    left: 0;
    z-index: 10;
  }

  header.show-mobile-menu {
    z-index: 10;
  }

  .button {
    z-index: 0;
    color: black;
  }


  .a {
    z-index: 11;
  }

  .navbar a {
    color: #000;
    z-index: 11;
  }

  .hero-section .content {
    text-align: center;
    pointer-events: none;
  }

  .hero-section .content :is(h2, p) {
    max-width: 100%;
  }

  .hero-section .content h2 {
    font-size: 2.3rem;
    line-height: 60px;
    z-index: 1;
  }

  .hero-section .content button {
    padding: 9px 18px;
  }

  .hero-section {
    /*height: 100vh;*/
    margin-top: 10vh;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

  .navbar .logo img {
  width: auto;
  height: 60px;
}

}

.service-item::before {
  content: "\2714"; /* This is the Unicode character for a checkmark */
  color: green; /* Change this to the color you want */
  margin-right: 10px; /* Adds some space between the checkmark and the text */
  font-size: 20px;
  font-weight: bold;
}

/*.gallery-section {*/
/*    height: 100vh;*/
/*    !*background-image: url("https://images.unsplash.com/photo-1505843513577-22bb7d21e455?q=80&w=1932&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");*!*/
/*    background-image: url('images/background.jpg');*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding: 0 20px;*/
/*  }*/

/*  .gallery-section::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.95) fixed;*/
/*    z-index: 1;*/
/*  }*/

  ::selection {
    color: #fff;
    background: none;
    z-index: 0;
}

  body {
  background-image: url('images/background.jpg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65) fixed;
  z-index: -1; /* Ensure the overlay is below the content */
}
