* {
  font-family: Poppins, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body { color:#333; background:#fff; }

header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 24px;
  position:sticky;
  top:0;
  background:#fff;
  z-index:1000;
}

.logo { height:40px; }

nav a {
  margin-left:16px;
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.hero {
  height:80vh;
  background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
  url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1200&q=60");
  background-size:cover;
  background-position:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  text-align:center;
}

.btn {
  margin-top:20px;
  background:#d63384;
  color:#fff;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
}

section {
  padding:70px 20px;
  text-align:center;
}

.grid, .pricing-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
  max-width:1100px;
  margin:auto;
}

.card, .price-card {
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.price {
  font-size:28px;
  color:#d63384;
  margin:15px 0;
}

.popular {
  border:2px solid #d63384;
}

form {
  max-width:420px;
  margin:auto;
  display:grid;
  gap:14px;
}

input, select, button {
  padding:14px;
  border-radius:10px;
  border:1px solid #ccc;
}

button {
  background:#d63384;
  color:#fff;
  border:none;
  cursor:pointer;
}

iframe {
  width:100%;
  height:260px;
  border:none;
  border-radius:12px;
  margin-top:20px;
}

.whatsapp {
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:#fff;
  padding:14px;
  border-radius:50%;
  font-size:24px;
}

#festivalBanner {
  background:#d63384;
  color:#fff;
  padding:10px;
  text-align:center;
  font-size:14px;
}
