
:root {
  --purple: #6a0dad;
  --gold: #ffbf00;
  --white: #fff;
  --light-purple: #f3e9ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  background: var(--light-purple);
  color: #333;
}

.hero {
  background: var(--purple);
  color: var(--white);
  padding: 4rem 1rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-content .tagline {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  margin: 0.3rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--purple);
}

.btn-primary:hover {
  background: #e6ac00;
}

.btn-secondary {
  background: var(--purple);
  color: var(--white);
  border: 2px solid var(--gold);
}

.section {
  padding: 2.5rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  color: var(--purple);
  margin-bottom: 1rem;
  text-align: center;
}

.services-list {
  list-style: none;
  padding-left: 1rem;
  font-size: 1.1rem;
}

.services-list li {
  margin-bottom: 0.5rem;
}

.image-gallery {
  margin-top: 2rem;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.gallery img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.join-section {
  background: #fff5e6;
  text-align: center;
}

.contact-section {
  background: var(--purple);
  color: var(--white);
  text-align: center;
}

.contact-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border: none;
  border-radius: 6px;
}

.footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: #aaa;
}


body {
  background: var(--light-purple) url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
  background-size: cover;
}

h2::before, h2::after {
  content: "✨";
  margin: 0 0.5rem;
  color: var(--gold);
  animation: sparkle 2s infinite alternate;
}

@keyframes sparkle {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.2); }
}


.decor-left, .decor-right {
  position: absolute;
  top: 20px;
  font-size: 2rem;
  color: var(--gold);
}

.decor-left {
  left: 20px;
}

.decor-right {
  right: 20px;
}
