/* Reset + base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9fb;
  color: #222;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #9c27b0; /* accent purple */
}

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger div {
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, #1a1a1a, #2c003e);
  color: #fff;
  text-align: center;
  padding: 6rem 1.5rem;
}

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

.hero .tagline {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ddd;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #eee;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #9c27b0;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #b54cd8;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 1rem;
    width: 200px;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

/* Page content wrapper */
.page {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

/* Headings */
.page h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Paragraphs */
.page p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

/* Lists */
.page ul {
  margin: 1rem 0 2rem 2rem;
  padding-left: 1rem;
  line-height: 1.7;
}

.page li {
  margin-bottom: 0.75rem;
}

