/* ========================================
   GlydeTalents - Main Stylesheet
   ======================================== */

/* Base */
body {
  font-family: 'Exo 2', sans-serif;
  background: #000;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

/* ========================================
   Gradient Text Utilities
   ======================================== */
.gradient-text {
  background: linear-gradient(135deg, #1565C0, #F4B400, #FFD54F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #F4B400, #FFD54F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Glass Morphism
   ======================================== */
.glass-strong {
  background: rgba(10, 61, 145, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ========================================
   Glow Effects
   ======================================== */
.glow-blue {
  box-shadow: 0 0 20px rgba(21, 101, 192, 0.6),
              0 0 40px rgba(21, 101, 192, 0.4),
              0 0 60px rgba(21, 101, 192, 0.2);
}

.glow-gold {
  box-shadow: 0 0 20px rgba(244, 180, 0, 0.6),
              0 0 40px rgba(244, 180, 0, 0.4);
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
  background: linear-gradient(135deg, #1565C0, #0A3D91);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(21, 101, 192, 0.4);
  transform: scale(1.03);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: rgba(244, 180, 0, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* ========================================
   Layout Utilities
   ======================================== */
.section-padding {
  padding: 100px 0;
}

.perspective-1000 {
  perspective: 1000px;
}

/* ========================================
   Keyframe Animations
   ======================================== */
@keyframes orbit {
  from { transform: rotate(0deg) translateY(-150px) rotate(0deg); }
  to   { transform: rotate(360deg) translateY(-150px) rotate(-360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-20px); }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  50%      { opacity: 0.3; }
}

@keyframes streak {
  0%   { transform: translateY(-200px); opacity: 0; }
  50%  { opacity: 0.5; }
  100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes rotateCube {
  from { transform: rotateY(0deg) rotateX(5deg); }
  to   { transform: rotateY(360deg) rotateX(5deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.8; }
}

@keyframes dashAnim {
  to { stroke-dashoffset: -10; }
}

@keyframes travelLight {
  0%   { left: 50%; top: 30%; }
  25%  { left: 70%; top: 50%; }
  50%  { left: 50%; top: 70%; }
  75%  { left: 30%; top: 50%; }
  100% { left: 50%; top: 30%; }
}

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

@keyframes wave {
  0%, 100% { transform: translateX(0) translateY(0); }
  50%      { transform: translateX(-25px) translateY(10px); }
}

/* ========================================
   Page Load Animations
   ======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-on-load {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-load-delay-1 { animation-delay: 0.15s; }
.animate-on-load-delay-2 { animation-delay: 0.3s; }
.animate-on-load-delay-3 { animation-delay: 0.45s; }
.animate-on-load-delay-4 { animation-delay: 0.6s; }

/* ========================================
   Scroll-Triggered Animations
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Custom Scrollbar
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #F4B40033;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #F4B40066;
}
