:root {
  --primary-green: #4CAF50;
  --primary-purple: #6A0DAD;
  --light-bg: #f9f9f9;
  --dark-text: #333;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--dark-text);
  background-color: var(--light-bg);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--primary-purple);
  color: white;
}

header nav h1 {
  font-size: 24px;
  margin: 0;
}

nav .cta {
  padding: 10px 20px;
  background: var(--primary-green);
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

#hero {
  position: relative;
  text-align: center;
  color: white;
}

#hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(70%);
}

#hero .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#hero h2 {
  font-size: 36px;
  margin: 0 0 10px;
}

#hero p {
  font-size: 18px;
  margin: 0 0 20px;
}

#hero .cta {
  background: var(--primary-green);
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-purple);
}

#about p {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

#packages .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#packages .card {
  flex: 1 1 250px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

#packages .card h3 {
  color: var(--primary-green);
  margin-top: 0;
}

#packages .card .price {
  font-size: 24px;
  color: var(--primary-purple);
  margin: 10px 0;
}

#menu .menu-section {
  margin-bottom: 40px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#menu .menu-section h3 {
  width: 100%;
  color: var(--primary-green);
  margin-top: 0;
}

#menu .menu-section img {
  flex: 0 0 200px;
  max-width: 200px;
  border-radius: 8px;
  margin-right: 20px;
}

#menu .menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

#menu .menu-section li {
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

#menu .menu-section li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-purple);
}

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

#contact li {
  margin-bottom: 10px;
}

#contact a {
  color: var(--primary-purple);
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 20px;
  background: var(--primary-purple);
  color: white;
}