:root {
  --bg-dark: #000000;
  --wine: #000000;
  --plum: #1b0310;
  --ivory: #b9b9b9;
  --dusty-rose: #b9b9b9;
  --lace: rgba(158, 123, 123, 0.493);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top, #06000f, var(--bg-dark));
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
}

/* ===== PAGE WRAPPER ===== */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* ===== HEADER ===== */
.title {
  text-align: center;
  margin-bottom: 40px;
}

.title h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  letter-spacing: 2px;
  margin: 0;
}

.title p {
  margin-top: 8px;
  color: var(--dusty-rose);
  font-style: italic;
  font-size: 1.2rem;
}

/* ===== PROFILE CARD ===== */
.profile {
  background-image: url(https://i.pinimg.com/736x/48/70/f1/4870f14259908152e65373019d15b02d.jpg);
    );
  border: 2px solid var(--dusty-rose);
  padding: 30px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  box-shadow: 0 0 40px rgba(0,0,0,0.9);
}

/* ===== PORTRAIT ===== */
.portrait img {
  padding: 10px;
  background: #1b1417;
  margin-top: 80px;
}

.portrait img {
  width: 100%;
  display: block;
}

/* ===== INFO ===== */
.info h2 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 8px 0;
  font-size: 2.5rem;
}

.tags {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: var(--dusty-rose);
  font-style: italic;
}

.lore {
  line-height: 1.7;
  font-size: 1.2rem;
  background: rgba(0,0,0,0.35);
  padding: 20px;
  border-left: 3px solid var(--dusty-rose);
}

/* ===== NOTE ===== */
.note {
  position: relative;
  margin-top: 10px;
  background: #706565;
  color: #0c0101;
  padding: 0.3px 12px;
  font-size: 0.9rem;
  font-family: 'Special Elite', cursive;
  width: fit-content; 
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
  border: 1px solid #000000;
}

.note::before {
  content: "✧";
  position: absolute;
  top: -15px;
  left: -15px;
  font-size: 1.2rem;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  margin-top: 50px;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ===== CANDLELIT ATMOSPHERE ===== */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,0.55) 100%
    );
  pointer-events: none;
  z-index: 10;
}

.profile {
  box-shadow:
    0 0 60px rgba(5, 3, 0, 0.12),
    0 0 120px rgba(10, 5, 0, 0.4),
    0 0 40px rgba(0,0,0,0.9);
}

/* ===== PORTRAIT HOVER GLOW ===== */
.portrait {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.portrait img:hover {
  box-shadow:
    0 0 25px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(0, 0, 0, 0.6);
  transform: scale(1.05);
}

.portrait img {
  transition: filter 0.4s ease;
}

.portrait:hover img {
  filter: brightness(1.05) contrast(1.05);
}


