/*
Theme Name: Sports Federation Pro
Theme URI: https://example.com/sports-federation
Author: Professional Development
Author URI: https://example.com
Description: قالب متقدم ومخصص للمؤسسات الرياضية والإخبارية يدعم تعدد اللغات (RTL & LTR) وأنواع المنشورات المخصصة.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sports-federation
*/

body {
    font-family: 'Tajawal', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333333;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background-color: #004d40;
    color: #ffffff;
    padding: 20px 0;
}

.site-header a {
    color: #ffffff;
    text-decoration: none;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.main-navigation li {
    display: inline-block;
}

/* Sections */
.hero-section, .news-section, .matches-section {
    padding: 40px 0;
}

.section-title {
    font-size: 24px;
    border-bottom: 2px solid #004d40;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}