/* Base Styles */
body {
    background-color: #fcfbf9;
    color: #44403c;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #d48d26; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b86e1d; 
}

/* Font Families Utility Classes */
.font-en-heading { font-family: 'Cinzel', serif; }
.font-en-body { font-family: 'Inter', sans-serif; }
.font-si-main { font-family: 'Noto Sans Sinhala', sans-serif; }
.font-si-heading { font-family: 'Abhaya Libre', serif; }

/* Effects */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.lotus-bg {
    background-image: radial-gradient(#d48d26 0.5px, transparent 0.5px), radial-gradient(#d48d26 0.5px, #fcfbf9 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-color: #fcfbf9;
    opacity: 1;
}

.text-shadow-gold {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.perspective-1000 {
    perspective: 1000px;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.animate-kenburns {
    animation: kenburns 20s ease-out infinite alternate;
}