/* Custom Styles for Ratheesh Music Official - Professional Gold & White Theme */

:root {
  --primary-glow: rgba(245, 158, 11, 0.4);
  --secondary-glow: rgba(217, 119, 6, 0.4);
  --bg-bright: #fafaf9;
  --card-bg-light: rgba(255, 255, 255, 0.95);
  --border-gold-light: rgba(245, 158, 11, 0.4);
  --text-dark: #0f172a;
  --nav-bg-light: rgba(255, 255, 255, 0.95);
}

/* Custom Scrollbar - Metallic Gold Gradient */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
}

/* Smooth Universal Theme Transition Animation */
body, body *, body *::before, body *::after {
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Default Page Theme: BRIGHT / LIGHT MODE */
body {
  background-color: #fafaf9;
  color: #0f172a;
  font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Metallic Gold Buttons with Bold White Text */
.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 0.025em;
  border: 1px solid rgba(254, 240, 138, 0.6) !important;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35), 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.55), 0 0 15px rgba(254, 240, 138, 0.8) !important;
  transform: translateY(-2px) scale(1.02) !important;
}

.btn-gold:active {
  transform: translateY(1px) scale(0.97) !important;
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.4) !important;
}

/* Border Gradient: Gold & White */
.border-gold-white {
  border: 2px solid transparent !important;
  background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), linear-gradient(135deg, #f59e0b 0%, #ffffff 50%, #d97706 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.12) !important;
  transition: all 0.3s ease;
}

.border-gold-white:hover {
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.25) !important;
  transform: translateY(-3px);
}

/* Glassmorphism Containers */
.glass-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 12px 40px 0 rgba(245, 158, 11, 0.2);
}

/* Gold Text Effects */
.text-gold-gradient {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Equalizer Visualizer Bars */
.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.equalizer-bar {
  width: 4px;
  background: linear-gradient(to top, #f59e0b, #d97706);
  border-radius: 2px;
  animation: equalize 1.2s ease-in-out infinite alternate;
}

.equalizer-bar:nth-child(1) { height: 40%; animation-delay: -0.4s; }
.equalizer-bar:nth-child(2) { height: 80%; animation-delay: -0.2s; }
.equalizer-bar:nth-child(3) { height: 100%; animation-delay: -0.6s; }
.equalizer-bar:nth-child(4) { height: 60%; animation-delay: -0.1s; }
.equalizer-bar:nth-child(5) { height: 90%; animation-delay: -0.5s; }

@keyframes equalize {
  0% { height: 20%; }
  100% { height: 100%; }
}

.equalizer.paused .equalizer-bar {
  animation-play-state: paused;
  height: 20% !important;
}

/* Audio Player Progress Bar */
.progress-bar-custom {
  background: rgba(15, 23, 42, 0.15);
  height: 6px;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  height: 100%;
  width: 0%;
  border-radius: 3px;
  transition: width 0.1s linear;
}

/* Scroll Animations */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Search Highlight */
.search-highlight {
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.8) !important;
  border-color: #f59e0b !important;
}

/* Floating Gemini AI Chatbot "Lik AI" */
#lik-ai-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9990;
}

#lik-ai-fab {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5) !important;
}

#lik-ai-modal {
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Toast alert notification */
#toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateY(120%);
  opacity: 0;
}

#toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}
