
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #0e0e0e;
  color: #eeeeee;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 1rem 2rem;
  box-shadow: 0 1px 5px rgba(255,255,255,0.05);
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #bb86fc;
}

.menu {
  position: relative;
}

.hamburger {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  color: #ffffff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-links li a {
  text-decoration: none;
  color: #eeeeee;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: #1e1e1e;
}

.hero h1 {
  color: #bb86fc;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #bb86fc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.packages, .schedule {
  padding: 2rem;
}

.package {
  background: #1a1a1a;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(255,255,255,0.05);
}
