:root {
  /* Color Variables */
  --primary-color: #634c9e;
  --secondary-color: #4c569e;
  --accent-color: #e9c46a;
  --danger-color: #e76f51;
  --warning-color: #f4a261;
  --site-color: var(--site-title-color);
  --text-light: #e0e0e0;
  --text-dark: #100f0f;

  /* Animation Variables */
  --transition-speed: 0.3s;
  --transition-function: ease;
}

/* Base Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--heading-color, var(--text-light));
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--border-color, rgba(255, 255, 255, 0.1));
  padding-bottom: 0.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-function);
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.slide-in {
  animation: slideIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
