/**
 * Custom CSS for VibeNews Theme
 */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* RTL Adjustments */
body {
    direction: rtl;
    text-align: right;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Print Styles */
@media print {
    header, footer, #accessibility-wrapper, #cookie-consent-modal, #read-progress, aside, .comments-area {
        display: none !important;
    }
    main {
        padding-top: 0 !important;
    }
    body {
        background: white !important;
        color: black !important;
    }
}
