/* ======================================================
   BASE STYLES
   ====================================================== */

body {
  background-color: #0a0a0a;
  color: #e5e5e5;
}


/* ======================================================
   CUSTOM SCROLLBAR
   ====================================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 5px;
  border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
  background: #404040;
}


/* ======================================================
   NAVBAR LOGO STYLING
   ====================================================== */

.flex-shrink-0 a {
  display: flex;
  align-items: center;
  gap: 0;
  color: #ffffff;
  text-decoration: none;
}

.flex-shrink-0 img {
  height: 50px;
  width: auto;
  display: block;
}


/* ======================================================
   GLASSMORPHISM EFFECT
   ====================================================== */

.glass {
  background: rgba(23, 23, 23, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}


/* ======================================================
   GRADIENT TEXT ANIMATION
   ====================================================== */

.text-gradient {
  background: linear-gradient(
    to right,
    #6366f1,
    #ec4899,
    #14b8a6
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 5s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* ======================================================
   CARD HOVER EFFECTS
   ====================================================== */

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.3);
}


/* ======================================================
   MOBILE MENU ANIMATION
   ====================================================== */

#mobile-menu {
  transform-origin: top;
  transition: transform 0.3s ease-in-out;
}

#mobile-menu.hidden {
  display: none;
}

#mobile-menu:not(.hidden) {
  display: block;
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
