/* Custom Styles for Luxury Feel */
body {
    font-family: 'Tajawal', sans-serif; /* Default to Arabic font */
    background-color: #f5f5f3;
    color: #2d2d2d;
}

body[lang="en"] {
    font-family: 'Outfit', sans-serif;
}

.gold-gradient-text {
    background: linear-gradient(to right, #483b2c, #845154, #483b2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #6d121c;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #5e2026;
}
