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

/* Base Styles */
:root {
  --color-dark: #07030e;
  --color-dark-purple: #140b24;
  --color-deep-purple: #23123a;
  --color-gold: #d4af37;
  --color-gold-light: #f6e6b4;
  --color-gold-dark: #aa7c11;
  --color-text-light: #f3effa;
  --color-text-muted: #a59cb5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--color-dark);
  color: var(--color-text-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Cinzel', serif;
}

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

::-webkit-scrollbar-track {
  background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--color-deep-purple);
  border-radius: 4px;
  border: 1px solid var(--color-gold);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Helper Utilities */
.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 3s infinite;
}

.animate-spin-slow {
  animation: spin-slow 25s linear infinite;
}

/* Glassmorphism Cards */
.glass-panel {
  background: rgba(20, 11, 36, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 32px 0 rgba(212, 175, 55, 0.1);
  transform: translateY(-4px);
}

/* Premium Gold Text Gradient */
.text-gold-gradient {
  background: linear-gradient(135deg, #f6e6b4 0%, #d4af37 50%, #aa7c11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gold Border Bottom Gradient */
.border-gold-gradient {
  border-image: linear-gradient(to right, transparent, var(--color-gold), transparent) 1;
}

/* Spiritual Background Glowing Dots */
.cosmic-bg {
  background: radial-gradient(circle at 20% 30%, rgba(35, 18, 58, 0.6) 0%, transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(20, 11, 36, 0.8) 0%, transparent 50%),
              #07030e;
  background-attachment: fixed;
}

/* Custom Gold Button */
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 1px solid var(--color-gold-light);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  color: var(--color-dark);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.5);
}

/* Scroll-to-Top Button */
.scroll-top-btn {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 40px;
  left: 40px;
  background-color: rgba(20, 11, 36, 0.85);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-5px);
}

/* Active Nav Links */
.nav-link-active {
  color: var(--color-gold) !important;
  border-bottom: 2px solid var(--color-gold);
}

/* --- Blog Styling Extensions --- */

/* Image Hover Zoom */
.blog-card-hover {
  overflow: hidden;
}

.blog-img-zoom {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover .blog-img-zoom {
  transform: scale(1.06);
}

/* Custom Blockquote */
.blockquote-gold {
  position: relative;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(212, 175, 55, 0.05);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-family: 'Cinzel', serif;
}

.blockquote-gold::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.15);
  font-family: 'Cinzel', serif;
  line-height: 1;
}

/* Blog Content Blocks */
.blog-content-body p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.blog-content-body h2, 
.blog-content-body h3, 
.blog-content-body h4 {
  color: var(--color-gold-light);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: bold;
}

.blog-content-body h2 {
  font-size: 1.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 0.5rem;
}

.blog-content-body h3 {
  font-size: 1.4rem;
}

.blog-content-body h4 {
  font-size: 1.2rem;
}

/* Celestial List Bullets */
.bullet-celestial {
  list-style: none;
  padding-left: 0;
}

.bullet-celestial li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.bullet-celestial li::before {
  content: '\F5F3'; /* Bootstrap Icon bi-star-fill code in unicode */
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--color-gold);
  font-size: 0.75rem;
}

/* Highlight boxes */
.highlight-box {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.note-box {
  background: rgba(230, 200, 117, 0.08);
  border-left: 4px solid var(--color-gold-dark);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

/* Tag Pills */
.tag-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: rgba(20, 11, 36, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.tag-pill:hover {
  color: var(--color-dark);
  background: var(--color-gold);
  border-color: var(--color-gold-light);
  transform: translateY(-1px);
}

/* Sharing Buttons */
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-text-muted);
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(20, 11, 36, 0.4);
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.share-btn:hover {
  transform: translateY(-3px);
  color: var(--color-dark) !important;
}

.share-fb:hover { background-color: #1877f2; border-color: #1877f2; }
.share-tw:hover { background-color: #1da1f2; border-color: #1da1f2; }
.share-ig:hover { background-color: #e1306c; border-color: #e1306c; }
.share-wa:hover { background-color: #25d366; border-color: #25d366; }
.share-li:hover { background-color: #0077b5; border-color: #0077b5; }

