@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Core Base Styling Rules */
html {
  scroll-behavior: smooth;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #000000;
  color: #f3f4f6;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
}

/* Custom visual styling helpers */
.glass-panel {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 102, 0, 0.2);
}

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

.text-gradient-zumba {
  background: linear-gradient(135deg, #FF6600 0%, #FF3300 50%, #FFCC00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar for True Black and Vibrant Orange */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #FF6600;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF7F00;
}

/* Elegant ambient animated background yoga silhouette style */
.yoga-bg-silhouette {
  animation: breathing-silhouette 14s ease-in-out infinite;
  transform-origin: center center;
  filter: invert(1) brightness(1.7) drop-shadow(0 0 50px rgba(255, 102, 0, 0.25));
}

/* Dark/neutral breathing silhouette for bright/golden sections */
.yoga-bg-silhouette-dark {
  animation: breathing-silhouette 14s ease-in-out infinite;
  transform-origin: center center;
  filter: opacity(0.06);
}

@keyframes breathing-silhouette {
  0%, 100% {
    transform: scale(0.95) rotate(-1deg);
    opacity: 0.04;
  }
  50% {
    transform: scale(1.05) rotate(1deg);
    opacity: 0.09;
  }
}
