/* Soni Yoga Studio - Custom Premium Styles */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: #030712; /* Tailwind slate-950 */
  color: #f3f4f6; /* Tailwind gray-100 */
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Glassmorphism Utilities */
.glass-panel {
  background: rgba(15, 23, 42, 0.45); /* slate-900 with transparency */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-panel-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel-hover:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(16, 185, 129, 0.2); /* Emerald border highlight on hover */
  box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

.glass-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.7) 0%, rgba(3, 7, 18, 0.8) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-modal {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Glowing text and badges */
.glow-emerald {
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.glow-teal {
  text-shadow: 0 0 12px rgba(20, 184, 166, 0.3);
}

.glow-amber {
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

.glow-rose {
  text-shadow: 0 0 12px rgba(244, 63, 94, 0.3);
}

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

::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.3);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(16, 185, 129, 0.4);
}

/* Tab indicator sliding effect simulation */
.sidebar-link {
  position: relative;
  transition: all 0.2s ease-in-out;
}

.sidebar-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 4px;
  background: linear-gradient(to bottom, #10b981, #14b8a6);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* Pulse animation for paused members */
@keyframes softPulse {
  0%, 100% {
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 8px 2px rgba(245, 158, 11, 0.2);
  }
}

.pulse-paused {
  animation: softPulse 2s infinite ease-in-out;
}

/* Drawer Modals transition support */
.modal-overlay {
  transition: opacity 0.3s ease-out;
}
.modal-content {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-hidden {
  opacity: 0;
  pointer-events: none;
}
.modal-hidden .modal-content {
  transform: scale(0.95) translateY(10px);
}

/* Utility to hide input default dates calendar icon color customizer */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) hue-rotate(120deg) brightness(0.9);
  cursor: pointer;
}

/* Gradient background glowing shapes */
.glow-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -10;
  opacity: 0.12;
  pointer-events: none;
}

.blob-1 {
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  top: -10%;
  left: 5%;
}

.blob-2 {
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
  bottom: 10%;
  right: 5%;
}
