/* ---------- GLOBAL COLORS ---------- */
:root {
/* matches teal fur */
/* matches pink body */
/* matches horns/gears */
/* optional secondary */
}

/* ---------- PAGE BACKGROUND ---------- */
body {
	background-color: var(--main-bg);
	color: var(--text-dark);
	font-family: 'Poppins', sans-serif;
}

/* ---------- HEADINGS ---------- */
h1, h2, h3 {
	color: var(--accent-teal);
}

/* ---------- LINKS ---------- */
a {
	color: var(--accent-pink);
}

a:hover {
	color: var(--accent-purple);
	text-decoration: underline;
}

/* ---------- BUTTONS ---------- */
button, .wp-block-button__link {
	background-color: var(--accent-yellow);
	color: var(--text-dark);
	border: none;
	padding: 10px 20px;
	border-radius: 10px;
	font-weight: bold;
	transition: .3s ease;
}

button:hover, .wp-block-button__link:hover {
	background-color: var(--accent-pink);
	color: var(--text-light);
}

/* ---------- COMMENT SECTION ---------- */
#comments {
	background-color: #fff0fa;
	border-left: 5px solid var(--accent-pink);
	padding: 25px;
	border-radius: 8px;
	margin-top: 40px;
}

/* ---------- FORM FIELDS ---------- */
input[type="text"], textarea {
	border: 2px solid var(--accent-teal);
	border-radius: 8px;
	padding: 10px;
	width: 100%;
}

a[href="#respond"] {
	background-color: #2dd4bf;
/* teal */
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	margin-top: 15px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	transition: background-color .3s ease;
}

a[href="#respond"]:hover {
	background-color: #ec4899;
/* pink hover */
	color: #ffffff;
}
.site-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}
/* RIGHT SIDE COLOR PANEL */
body::after{
    content:"";
    position:fixed;
    top:0;
    right:0;
    width:25%;
    height:100vh;
    background:#FFD6E8;
    z-index:0;
}
/* KEEP WEBSITE CONTENT ABOVE PANEL */
.site {
    position: relative;
    z-index: 1;
}

html, body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}
.eq-progress-tracker {
  max-width: 750px;
  padding: 30px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  margin: 30px auto;
}

.eq-progress-tracker h2 {
  margin-top: 0;
}

.tracker-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 16px 0;
  padding: 16px;
  border-radius: 16px;
  animation: slideUp .6s ease both;
}

.tracker-item span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
}

.tracker-item small {
  display: block;
  margin-top: 4px;
}

.done {
  background: #e6fffa;
}

.done span {
  background: #2dd4bf;
  color: white;
}

.progress {
  background: #fff7d6;
}

.progress span {
  background: #facc15;
  color: #333;
  animation: pulse 1.4s infinite;
}

.upcoming {
  background: #f3f4f6;
}

.upcoming span {
  background: #d1d5db;
  color: #333;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tracker-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.tracker-link:hover{
  text-decoration:none;
  color:inherit;
}

.tracker-link:hover .tracker-item{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  transition:.2s ease;
}
