@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes grow {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-fade {
  animation: fade 0.6s ease-in-out;
}

.animate-grow {
  animation: grow 0.8s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #8B1538;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6B0F2A;
}

/* Color variables */
.text-burgundy {
  color: #8B1538;
}

.bg-burgundy {
  background-color: #8B1538;
}

.bg-burgundy-dark {
  background-color: #6B0F2A;
}

.bg-burgundy-light {
  background-color: #F5E6EB;
}

.text-burgundy-light {
  color: #F5E6EB;
}

.border-burgundy {
  border-color: #8B1538;
}

.hover\:bg-burgundy:hover {
  background-color: #8B1538;
}

.hover\:bg-burgundy-dark:hover {
  background-color: #6B0F2A;
}

.hover\:text-burgundy:hover {
  color: #8B1538;
}

.bg-graphite {
  background-color: #2F2F2F;
}

.text-graphite {
  color: #2F2F2F;
}

.border-graphite {
  border-color: #2F2F2F;
}

/* Tailwind config extension */
@layer utilities {
  .text-burgundy {
    color: #8B1538;
  }
  
  .bg-burgundy {
    background-color: #8B1538;
  }
  
  .bg-burgundy-dark {
    background-color: #6B0F2A;
  }
  
  .bg-burgundy-light {
    background-color: #F5E6EB;
  }
  
  .text-burgundy-light {
    color: #F5E6EB;
  }
  
  .border-burgundy {
    border-color: #8B1538;
  }
  
  .bg-graphite {
    background-color: #2F2F2F;
  }
  
  .text-graphite {
    color: #2F2F2F;
  }
  
  .border-graphite {
    border-color: #2F2F2F;
  }
}
