<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: 20px 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: center;
  align-items: center;
  padding: 60px 5%;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.hero-text {
  flex: 1;
  text-align: center;
  padding: 20px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  margin-bottom: 10px;
  color: rgb(213, 223, 131);
}

.hero-text p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #ccc;
}

/* Featured Section */
.featured {
  background-color: #740F06;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 80px 5%;
  gap: 40px;
  flex-wrap: wrap;
}

.featured-item {
  flex: 1;
  text-align: center;
  max-width: 400px;
}

.featured-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.featured-item h3 {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
}

/* Button Section */
.cta {
  background-color: #4E0A04;
  text-align: center;
  padding: 50px 20px;
}

.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: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero {
    flex-direction: column;
    padding: 50px 20px;
  }

  .hero-text {
    order: -1;
  }

  .featured {
    flex-direction: column;
    gap: 40px;
    padding: 50px 20px;
  }

  .cta {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: clamp(1.5rem, 8vw, 3rem);
  }

  .hero-text p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }

  .featured-item img {
    height: 200px;
  }
}
</style>
