@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ── base ── */
body {
  font-family: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  background: #0e0b16;
  color: #e0d8ec;
  font-size: 22px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


/* ── links ── */
a {
  color: #c9a0dc;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

a:visited {
  color: #b090cc;
}

a:hover {
  color: #e8c8f8;
  text-shadow: 0 0 12px rgba(200, 160, 255, 0.4);
  text-decoration: none;
}

/* ── container ── */
#container {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* ── name / h1 ── */
h1 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 6px;
  font-weight: 400;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #e8c0f0, #a080c0, #d0a0e8, #8060b0);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── nav ── */
nav {
  text-align: center;
  margin: 16px 0;
  font-size: 18px;
  letter-spacing: 1px;
}

nav a {
  margin: 0 10px;
  padding: 4px 0;
  position: relative;
  color: #a890c0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #c9a0dc;
  transition: width 0.3s, left 0.3s;
}

nav a:hover::after {
  width: 100%;
  left: 0;
}

nav a:hover {
  color: #e8c8f8;
  text-shadow: 0 0 10px rgba(200, 160, 255, 0.3);
}

/* ── dividers ── */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6b4d8a, transparent);
  margin: 18px 0;
}

/* ── sections (glass cards) ── */
section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 160, 255, 0.1);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── h2 ── */
h2 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 14px;
  color: #c9a0dc;
  border-bottom: 1px solid rgba(200, 160, 255, 0.15);
  padding-bottom: 6px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── paragraphs ── */
p {
  margin: 10px 0;
}

/* ── lists ── */
ul, ol {
  padding-left: 22px;
}

ol {
  list-style: none;
  padding-left: 0;
}

ol li {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid rgba(200, 160, 255, 0.2);
  border-radius: 0 8px 8px 0;
  transition: border-color 0.3s, background 0.3s;
}

ol li:hover {
  border-left-color: #c9a0dc;
  background: rgba(255, 255, 255, 0.05);
}

ul li {
  margin-bottom: 10px;
}

/* ── small / meta text ── */
small {
  font-size: 18px;
  color: #8878a0;
}

/* ── bold ── */
b {
  font-weight: 600;
  color: #e8d8f4;
}

/* ── footer ── */
footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 160, 255, 0.1);
}

footer small {
  font-size: 12px;
  color: #6a5a80;
}

/* ── scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0e0b16;
}

::-webkit-scrollbar-thumb {
  background: #3a2a5a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5a3a8a;
}


/* ── selection ── */
::selection {
  background: rgba(200, 160, 255, 0.3);
  color: #fff;
}
