/*
Theme Name: Algharbya News Complete
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A sophisticated Arabic news WordPress theme, supporting RTL, featuring a moving news ticker, a hero slider, and automatic news import from external RSS feeds.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: algharbya
Tags: news, rtl, tailwindcss, custom-theme
*/

/* -----------------------------------------
   Custom Styles for Algharbya News
----------------------------------------- */
body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: Tahoma, sans-serif;
}

/* Hero Slider Animations */
@keyframes slide {
    0% { opacity: 0; transform: translateX(-20px); }
    10% { opacity: 1; transform: translateX(0); }
    90% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(20px); }
}

.hero-slider .slide-item {
    animation: slide 10s infinite ease-in-out;
}

/* News Ticker (if using JS instead of marquee) */
.news-ticker-content {
    animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* Card Hover Effects */
.post-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(217, 160, 50, 0.1), 0 4px 6px -2px rgba(217, 160, 50, 0.05);
}

.gold-text {
    color: #D9A032;
}

.gold-hover:hover {
    color: #f0b94b;
}

.gold-bg {
    background-color: #D9A032;
}