@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400&display=swap');

/* Base Styles */
.dark {
    color-scheme: dark;
}

/* Afghan Motif Backgrounds */
.afghan-motif {
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 20%),
        linear-gradient(to bottom, #000000, #0a0a0a);
}

.light .afghan-motif {
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 20%),
        linear-gradient(to bottom, #FFFFFF, #F5F5F5);
}

.card-glow:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.rtl-text {
    font-family: 'Noto Sans Arabic', sans-serif;
    direction: rtl;
}

/* Theme Toggle */
.theme-switch {
    width: 48px;
    height: 24px;
    background-color: rgba(255, 215, 0, 0.2);
    border: 1px solid #FFD700;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-switch::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #FFD700;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.light .theme-switch::after {
    transform: translateX(24px);
}

/* Animations */
.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

/* Transitions */
.page-transition {
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Language Display */
.language-container {
    transition: transform 0.5s ease;
}

.language-container:hover {
    transform: translateY(-5px);
}