/* Custom CSS Variables and Styles */
:root {
  /* Color Variables */
  --title: rgb(19, 19, 20);
  --title-fg: rgb(242, 242, 242);

  --subtitle: #A9ADB6;
  --subtitle-fg: #F2F2F2;

  --primary: #2cc185;
  --primary-bg: rgba(44, 193, 133, 0.1);

  --secondary: #131314;
  --secondary-bg: rgba(19, 19, 20, 0.1);

  --muted: #b8b8b8;
  --muted-bg: rgb(245, 245, 245, 0.1);

  --green: #85f2a0;
  --green-bg: rgba(133, 242, 160, 0.1);

  --dark-green: #00d8a4;
  --dark-green-bg: rgba(0, 216, 164, 0.1);

  --purple: #5b38c8;
  --purple-bg: rgba(91, 56, 200, 0.1);

  --blue: #5ba6ff;
  --blue-bg: rgba(91, 166, 255, 0.1);

  --pink: #ffa6ff;
  --pink-bg: rgba(255, 166, 255, 0.1);

  --orange: #ff6400;
  --orange-bg: rgba(255, 166, 0, 0.1);

  --red: #ff1c1c;
  --red-bg: rgba(255, 28, 28, 0.1);

  --border: #F2F2F2;

  --accent: oklch(0.97 0 0);
  --input: oklch(0.922 0 0);
  --ring: oklch(0.708 0 0);

  --background: #FFFFFF;
  --foreground: #F2F2F2;
}

/* Font Family */
.font-poppins {
  font-family: "Poppins", sans-serif;
}

/* Custom utility classes for additional functionality */
@layer utilities {
  .text-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--green));
  }

  .backdrop-blur {
    backdrop-filter: blur(10px);
  }
}

/* Custom animations */
@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

.animate-fade-in {
  animation: fade-in 0.5s ease-out;
}

.animate-slide-up {
  animation: slide-up 0.5s ease-out;
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* Smooth transitions */
* {
  transition: all 0.2s ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--muted-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Loading animation */
.loading-spinner {
  border: 2px solid var(--muted-bg);
  border-top: 2px solid var(--primary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* MY CUSTOM CSS CLASS */
.c-border {
  border: 1px solid var(--border);
}

/* Soft shadow for white backgrounds */
.c-shadow {
  box-shadow: 0 2px 12px 0 rgba(44, 193, 133, 0.06), 0 1.5px 6px 0 rgba(19, 19, 20, 0.08);
}