/* ---------- GLOBAL LAYOUT ---------- */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.75;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;

  /* Rich Lavender Gradient */
  background: linear-gradient(135deg, #c4fff0, #b8e8ff, #e6d4ff);
  color: #1a1a1a;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- HERO SECTION ---------- */
.hero {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(8px);
}

.hero img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #d8c4ff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #4c1d95;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #5b21b6;
  font-weight: 600;
}

/* ---------- NAVIGATION ---------- */
nav {
  background: rgba(255, 255, 255, 0.85);
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  text-align: center;
  backdrop-filter: blur(6px);
}

nav a {
  color: #7c3aed;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
  font-size: 1.05rem;
}

nav a:hover {
  color: #5b21b6;
  text-decoration: underline;
}

/* ---------- CONTENT CARD ---------- */
section {
  background: white;
  padding: 30px;
  border-radius: 14px;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

/* ---------- SECTION DIVIDER ---------- */
.divider {
  height: 3px;
  background: linear-gradient(to right, #c7a4ff, #8f5bff);
  margin: 40px 0;
  border-radius: 2px;
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  color: #f3e8ff;
  font-size: 0.9rem;
}
