/* -------- BASIC RESET -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fffaf3;
  color: #3e2723;
}

/* -------- NAVBAR -------- */
header {
  width: 100%;
  background-color: #4e342e;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  position: fixed;
  top: 0;
  z-index: 10;
}

header h1 {
  font-size: 24px;
  font-weight: 600;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #d7ccc8;
}

/* Hamburger toggle for mobile */
.Products-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* -------- HERO SECTION -------- */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  margin-top: 70px;
}

.hero h2 {
  font-size: 44px;
  color: #fff;
  text-shadow: 2px 2px 5px #000;
}

.hero p {
  color: #f5f5f5;
  font-size: 20px;
  margin-top: 15px;
}

.hero button {
  margin-top: 25px;
  padding: 12px 30px;
  font-size: 18px;
  background-color: #6d4c41;
  border: none;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero button:hover {
  background-color: #4e342e;
}

/* -------- PRODUCTS SECTION -------- */
.Products {
  padding: 100px 50px;
  background-color: #fff8e1;
  text-align: center;
}

.Products h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.Products-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.Products-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 20px;
  flex: 1 1 calc(25% - 30px);
  box-sizing: border-box;
  text-align: center;
}

.Products-item img {
  width: 100%;
  border-radius: 10px;
}

.Products-item h3 {
  margin: 15px 0 5px;
  font-size: 22px;
}

.Products-item p {
  font-size: 16px;
  color: #6d4c41;
}

/* -------- ABOUT SECTION -------- */
.about {
  background-color: #efebe9;
  padding: 100px 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about img {
  width: 400px;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  font-size: 18px;
}

/* -------- CONTACT SECTION -------- */
.contact {
  background-color: #4e342e;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.contact h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.contact p {
  font-size: 18px;
  margin-bottom: 10px;
}

/* -------- FOOTER -------- */
footer {
  background-color: #3e2723;
  color: #d7ccc8;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* -------- RESPONSIVE STYLES -------- */
@media (max-width: 1024px) {
  header {
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  nav a {
    margin: 10px 0;
  }

  .Products-toggle {
    display: block;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .Products {
    padding: 80px 20px;
  }

  .Products-items {
    gap: 20px;
  }

  .Products-item {
    flex: 1 1 calc(50% - 20px);
  }

  .about {
    flex-direction: column;
    padding: 80px 20px;
  }

  .about img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero button {
    padding: 10px 20px;
    font-size: 16px;
  }

  .Products h2,
  .about-text h2 {
    font-size: 28px;
  }

  .Products-item {
    flex: 1 1 100%;
  }

  .about-text p {
    font-size: 16px;
  }

  .contact h2 {
    font-size: 24px;
  }

  .contact p {
    font-size: 16px;
  }
}
