* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body { color: #222; }

.hero {
  background: linear-gradient(135deg,#7f00ff,#ff6a00,#ff0080);
  min-height: 100vh;
  color: white;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 30px 60px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav a { color: white; text-decoration: none; }

.logo { font-size: 1.7rem; font-weight: 700; }

.hero-content {
  text-align: center;
  margin-top: 180px;
}

.hero-content h2 { font-size: 3rem; }

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 45px;
  background: gold;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
}

.section {
  padding: 80px 50px;
  text-align: center;
}

.section.dark { background: #faf1ff; }

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 35px;
  width: 230px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.photo {
  width: 220px;
  height: 160px;
  border-radius: 15px;
  background: linear-gradient(135deg,#ff9a9e,#fad0c4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.form {
  max-width: 500px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input, .form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.form button {
  padding: 14px;
  background: #7f00ff;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
}

.social {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social a {
  font-weight: bold;
  text-decoration: none;
  color: #7f00ff;
}

footer {
  background: #2b0033;
  color: white;
  text-align: center;
  padding: 25px;
}
