/* Background color for the whole page */
body {
  background-color: #fff5e6;
  font-family: 'Pyidaungsu', sans-serif;
  margin: 0;
  color: #333;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}
.logo { 
  font-size: 1.5rem; 
  font-weight: bold; 
}
.logo span { 
  color: #ff4d4d; 
}
.nav ul { 
  display: flex; 
  gap: 1.5rem; 
  list-style: none; 
}
.nav a:hover { 
  color: #ff4d4d; 
}
.menu-toggle { 
  display: none; 
  font-size: 1.5rem; 
  background: none; 
  border: none; 
  cursor: pointer; 
}

/* Hero */
.hero {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 4rem 2rem;
  background: url('https://images.unsplash.com/photo-1589118949245-7d38baf380d6?auto=format&fit=crop&w=1350&q=80') no-repeat center center;
  background-size: cover;
  color: white;
}
.hero-text { 
  max-width: 500px; 
}
.hero-text h1 { 
  font-size: 2.5rem; 
  margin-bottom: 1rem; 
}
.hero-text span { 
  color: #ffff66; 
}
.hero .btn { 
  background: #fff; 
  color: #ff4d4d; 
  padding: 0.8rem 1.2rem; 
  border-radius: 25px; 
}

.hero-img { 
  position: relative; 
}
.hero-img img { 
  width: 220px; 
  display: none; 
  border-radius: 15px; 
}
.hero-img img.active { 
  display: block; 
}

/* Flavors */
.flavors { 
  padding: 3rem 2rem; 
  text-align: center; 
}
.flavor-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 2rem; 
  margin-top: 2rem; 
}
.flavor-card { 
  padding: 1.5rem; 
  background: #fff; 
  border-radius: 15px; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
  transition: transform 0.2s; 
}
.flavor-card:hover { 
  transform: translateY(-5px); 
}
.flavor-card img { 
  width: 100px; 
  margin-bottom: 1rem; 
  border-radius: 10px; 
}
.flavor-card .btn { 
  margin-top: 0.5rem; 
  background: #ff4d4d; 
  color: white; 
  border: none; 
  padding: 0.6rem 1.2rem; 
  border-radius: 20px; 
  cursor: pointer; 
}
.flavor-card .price { 
  font-weight: bold; 
  margin-top: 0.5rem; 
  color: #ff4d4d; 
}

/* Story */
.story { 
  padding: 3rem 2rem; 
  background: #f9f9f9; 
  text-align: center; 
}

/* Newsletter */
.newsletter { 
  padding: 3rem 2rem; 
  text-align: center; 
}
.newsletter form { 
  display: flex; 
  justify-content: center; 
  gap: 0.5rem; 
  margin-top: 1rem; 
}
.newsletter input { 
  padding: 0.7rem 1rem; 
  border: 1px solid #ccc; 
  border-radius: 20px; 
  width: 250px; 
}
.newsletter button { 
  background: #ff4d4d; 
  color: white; 
  border: none; 
  padding: 0.7rem 1.5rem; 
  border-radius: 20px; 
  cursor: pointer; 
}
.form-message { 
  margin-top: 1rem; 
  font-size: 0.9rem; 
}

/* Footer */
.footer { 
  text-align: center; 
  padding: 1.5rem; 
  background: #333; 
  color: #fff; 
}

/* Responsive */
@media (max-width: 768px) {
  .nav ul { 
    display: none; 
    flex-direction: column; 
    background: #fff; 
    position: absolute; 
    top: 70px; 
    right: 20px; 
    padding: 1rem; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
  }
  .nav ul.show { 
    display: flex; 
  }
  .menu-toggle { 
    display: block; 
  }
  .hero { 
    flex-direction: column; 
    text-align: center; 
  }
  .hero-img { 
    margin-top: 2rem; 
  }
}
