<style>
/* General reset ..*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins, sans-serif;
  background-color: #4E0A04;
  color: white;
}

/* Header Navigation */
header {
  background-color: #95760E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5%;
  flex-wrap: wrap;
}

header img {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #781818;
}

/* Hero Section */
.hero {
  background-color: #4E0A04;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 5%;
  gap: 100px;
  flex-wrap: wrap;
}

/* Text container */
.hero-text {
  flex: 1;
  color: white;
  text-align: left;
  max-width: 45%;
  line-height: 1.2;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  color: rgb(213, 223, 131);
}

.hero-text p {
  font-size: clamp(0.5rem, 1vw, 1rem);
}

/* Image container */
.hero-img {
  width: 45vw;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* Featured Section */
.featured {
  background-color: #740F06;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 100px 5%;
  gap: 80px;
  flex-wrap: wrap;
}

.featured-item {
  flex: 1;
  text-align: center;
  max-width: 300px;
}

.featured-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.featured-text {
  margin-top: 12px;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #fff;
}

/* Button Section */
.cta {
  background-color: #4E0A04;
  text-align: center;
  padding: 100px 5%;
}

.cta button {
  background-color: #2d6b2d;
  border: none;
  padding: 15px 50px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

.cta button:hover {
  background-color: #3c8c3c;
}

/* Footer */
footer {
  background-color: #bfa12d;
  text-align: center;
  padding: 15px;
  color: black;
  font-weight: bold;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero {
    padding: 80px 5%;
    gap: 50px;
  }

  .hero-text {
    max-width: 50%;
  }

  .hero-img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero {
    flex-direction: column;
    padding: 50px 5%;
    gap: 30px;
  }

  .hero-text, .hero-img {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .featured {
    flex-direction: column;
    gap: 40px;
    padding: 50px 5%;
  }

  .cta {
    padding: 50px 5%;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .hero-text p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }

  .featured-item img {
    height: 180px;
  }

  .featured-text {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }
}
</style>



