body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fffdf8;
  color: #333;
  text-align: center;
}

header {
  background: linear-gradient(90deg, #f4a261, #e76f51);
  color: white;
  padding: 10px 0;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5em;
  background-color: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 10px;
}

footer {
  background-color: #264653;
  color: white;
  padding: 10px 0;
  font-size: 0.9em;
}
/* WhatsApp floating button styles */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.whatsapp-float:hover {
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transform: scale(1.08);
}