/* Global Styles & Animations */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0A; /* Dark */
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    overflow-x: hidden;
}

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

/* Premium Glassmorphism */
.glass {
    background: rgba(128, 0, 0, 0.2); /* Maroon tint */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.1); /* Gold tint */
}

.glass-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.8), rgba(10,10,10,0.9));
    border: 1px solid rgba(255, 153, 51, 0.2); /* Saffron border */
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: #FFD700; /* Gold */
    box-shadow: 0 0 30px rgba(255, 153, 51, 0.2);
    transform: translateY(-5px);
}

/* Glowing Effects */
.glow-text {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.glow-saffron {
    box-shadow: 0 0 30px rgba(255, 153, 51, 0.3);
}

/* Gradients */
.text-gradient {
    background: linear-gradient(to right, #FFD700, #FF9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mandala Background Pattern */
.bg-mandala {
    position: relative;
}

.bg-mandala::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background-image: url('https://www.transparenttextures.com/patterns/arabesque.png');
    opacity: 0.05;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    animation: rotate 120s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Utilities */
.z-10 { z-index: 10; }
.relative { position: relative; }

/* Mobile Menu Animation */
#mobile-menu {
    transition: transform 0.4s ease-in-out;
    transform: translateX(100%);
}

#mobile-menu.open {
    transform: translateX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
    background: #FF9933;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}
