/* Custom Styles for Evolution Academia */

:root {
  --brand-black: #0d0d0d;
  --brand-green-dark: #11d414;
  --brand-green-light: #40e567;
  --brand-white: #ffffff;
  --dark-deep: #050505;
  --dark-card: #0a0a0a;
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-evo-gradient {
  background: linear-gradient(to right, var(--brand-green-dark), var(--brand-green-light), var(--brand-green-dark));
  background-size: 200% auto;
  transition: all 0.3s ease;
}

button.bg-evo-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(17, 212, 21, 0.4);
  animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.text-evo-gradient {
  background: linear-gradient(to right, var(--brand-green-dark), var(--brand-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: var(--dark-card);
  padding: 2rem;
  transition: all 0.5s ease;
}

.bento-card:hover {
  border-color: rgba(17, 212, 21, 0.3);
}

.futuristic-border {
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.futuristic-border::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(64, 229, 103, 0.5), transparent);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.animate-gradient-flow {
  animation: gradient-flow 3s linear infinite;
}

.animate-marquee-left {
  animation: marquee-left 10s linear infinite;
}

.animate-marquee-right {
  animation: marquee-right 20s linear infinite;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin-slow {
  animation: spin-slow 15s linear infinite;
}

.neon-border {
  border-color: rgba(64, 229, 103, 0.5);
  box-shadow: 0 0 15px rgba(17, 212, 21, 0.3);
  animation: neon-pulse 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
  from {
    box-shadow: 0 0 10px rgba(17, 212, 21, 0.2);
    border-color: rgba(64, 229, 103, 0.3);
  }
  to {
    box-shadow: 0 0 25px rgba(17, 212, 21, 0.6);
    border-color: rgba(64, 229, 103, 0.8);
  }
}

.shimmer-btn {
  position: relative;
  overflow: hidden;
}

.shimmer-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

.gallery-marquee {
  display: flex;
  width: max-content;
  animation: gallery-scroll 40s linear infinite;
}

@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* GSAP ScrollReveal initial state */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}
