/* === BACKGROUND === */
body {
  background: radial-gradient(circle at top left, #dff4ff 0%, #eaf8ff 40%, #fdfdff 100%);
  font-family: "Inter", sans-serif;
  color: #0a0a0a;
  margin: 0;
  padding: 0;
}

/* === TEXT STYLES === */
h1, h2 {
  font-family: "Roboto Slab", serif;
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
  letter-spacing: 0.5px;
}

h2 {
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
  margin-top: 30px;
}

/* === NAVBAR (floating glass bar) === */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(255, 255, 255, 0.15);
  padding: 14px 22px;
  border-radius: 18px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 180, 255, 0.1);
  margin: 30px auto;
  width: fit-content;
}

/* === NAV LINKS === */
nav a {
  color: #003366;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

nav a:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 180, 255, 0.25);
  color: #0055aa;
}

/* === RESPONSIVE NAV === */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    width: 90%;
    text-align: center;
    margin: 5px 0;
  }
}

/* === BUTTONS (crystal effect) === */
button {
  background: rgba(255, 255, 255, 0.25);
  color: #004466;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 28px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  box-shadow: 0 6px 25px rgba(0, 160, 255, 0.1);
}

button:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.07);
  box-shadow: 0 10px 30px rgba(0, 180, 255, 0.3);
  color: #0077cc;
}

button:active {
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.35);
}

/* === PARAGRAPHS === */
p {
  padding: 10px 20px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.6;
  /* Removed blur */
}

/* === FOOTER === */
#rights {
  font-family: Arial, sans-serif;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
  padding: 15px;
  /* Removed blur */
}
