:root {
  --accent: #00ffe1;
  --text: #ffffff;
  --bg-dark: #0a0a0a;
  --overlay: rgba(0,0,0,0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url("images/mandala.jpg") no-repeat center/cover;
  color: #fff;
  position: relative;
  min-height: 100vh;
}

.overlay {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2;
}

.logo {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
}

.stylized-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: #ffe9ec;
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 10px;
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.section {
  padding: 4rem 2rem;
  text-align: center;
  z-index: 1;
  position: relative;
}

.section-alt {
  background: rgba(255,255,255,0.05);
}

input[type="email"] {
  padding: 0.75rem;
  font-size: 1rem;
  width: 90%;
  max-width: 400px;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: none;
}

.note {
  font-size: 0.9rem;
  color: #ccc;
}

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