/* =========================
   ✅ GOOGLE FONT IMPORTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Racing+Sans+One&family=Fredoka:wght@400;700&family=Sriracha&family=EB+Garamond:wght@400;700&display=swap');

/* =========================
   🔺 LOGO - (leave as is)
========================= */
.logo {
  font-family: 'Racing Sans One', sans-serif;
  font-size: 3.5rem;
  color: #e00d0d;
  text-shadow: 2px 2px 4px #ff83b3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================
   🔻 BODY TEXT
========================= */
body, p, li, div {
  font-family: 'EB Garamond', serif; /* keeping this elegant serif you liked */
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
}

/* =========================
   🎀 MAIN PAGE TITLES (e.g. GIRTH QUENCHER)
========================= */
h1 {
  font-family: 'Racing Sans One', sans-serif;
  color: hotpink;
  font-size: 2.8rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgb(246, 142, 198);
  text-transform: uppercase;
}

/* =========================
   💖 HEADERS (e.g. section 3 title)
========================= */
h2 {
  font-family: 'Racing Sans One', sans-serif; /* For numbered sections like “3. Circular…” */
  color: rgb(253, 55, 161);
  font-weight: 700;
  text-shadow: 1px 1px 2px pink;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-family: 'Racing Sans One', sans-serif; /* For headers like “References & Inspiration” */
  color: #e0008c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px #ffc0e0;
}

/* =========================
   🧠 SUBSECTION HEADINGS (e.g. “Vivienne Westwood Works”)
========================= */
h4 {
  font-family: 'Racing Sans One', serif; /* You liked this – we’re keeping it here */
  font-weight: bold;
  font-size: 1.1rem;
  color: #111;
}

/* =========================
   💅 TOC SIDEBAR MENU ITEMS
========================= */
.md-nav__link, .sidebar-menu li {
  font-family: 'Racing Sans One', sans-serif; /* Use Sriracha for fun TOC titles */
  font-size: 1.1rem;
  color: #fc2c9b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.md-nav__link:hover {
  color: #ff70b5;
}

/* =========================
   ✨ LABELS / TAG BUBBLES
========================= */
.label {
  display: inline-block;
  background: #ffd8e3;
  color: #ff1986;
  font-family: 'Racing Sans One', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin: 5px 5px 10px 0;
  box-shadow: 2px 2px 0 #ff6ba6;
  border: 1px solid #ffc7df;
}

.label::before {
  content: "💖 ";
}

/* =========================
   ✨ SPARKLE EFFECT
========================= */
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.8;
  animation: sparkle-fade 0.8s ease-out forwards;
  z-index: 9999;
}

@keyframes sparkle-fade {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(20px) scale(0.5);
    opacity: 0;
  }
}

* {
  cursor: url('../images/home/cursor.cur'), auto;
}