 /*features*/
 
 @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #8d8473;
  --text-dark: #907b68;
  --text-light: #f5f5f5;
  --text-color: #d5ccc3;
  --max-widht: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  max-width: var(--max-widht);
  margin: auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-color);
  padding-top: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4rem;
  font-weight: 500;
}

.menu-btn {
  position: absolute;
  right: 16px;
  top: 16px;
  background: var(--primary-color);
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}





.herocontact {
  background: url('yyyy.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
}

.herocontact h1 {
  font-size: 48px;
  font-weight: bold;
}

.herocontact p {
  margin-top: 10px;
  font-size: 16px;
}








.features {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  font-size: 15px;
  color: #555;
}


footer {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  align-items: center;
  padding-top: 8rem;
  color: #907b68;
}

footer ul {
  display: flex;
  list-style: none;
  gap: 32px;
  color: black;
  margin-left: 20px;
}

footer .logo {
  color: (--primary-color);

}


p {
  color: black;
}


















/* Responsive CSS */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .menu-btn {
    display: block;
    z-index: 1000;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    width: 100%;
    padding: 1rem;
    display: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .herocontact h1 {
    font-size: 32px;
  }

  .herocontact p {
    font-size: 14px;
  }

  .features {
    padding: 40px 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  footer ul {
    flex-direction: column;
    gap: 12px;
    margin-left: 0;
    padding-left: 0;
  }
}
