body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  color: #2d2d2d;
  background: linear-gradient(135deg, #e6f3e6, #d4ecd4);
  background-image: url('leaf-texture.png');
  background-size: cover;
  scroll-behavior: smooth;
}

header.hero {
  text-align: center;
  padding: 80px 20px;
}

.logo {
  width: 130px;
  height: auto;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.1rem;
  color: #3c763d;
  margin-top: 5px;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
  font-weight: 600;
  transition: background 0.3s;
}

.order-btn:hover {
  background-color: #1ebe57;
}

.wa-icon {
  width: 22px;
  margin-right: 8px;
}

section {
  padding: 40px 20px;
  text-align: center;
}

section h2 {
  color: #2e5d33;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
  font-size: 1.1rem;
}

footer {
  text-align: center;
  padding: 30px;
  background-color: #f2f9f2;
  border-top: 2px solid #c8e6c9;
}

.socials img {
  width: 28px;
  margin: 0 10px;
  vertical-align: middle;
}

.float-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50px;
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  font-weight: 600;
}

.float-wa img {
  width: 28px;
  height: 28px;
}

.float-text {
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.5s;
}

.float-wa:hover .float-text {
  opacity: 1;
}
