/*
Theme Name: Egypt Trends (مصر تريندز)
Theme URI: https://egypttrends.com
Author: Egypt Trends Senior WordPress Team
Author URI: https://egypttrends.com
Description: قالب إخباري احترافي بتصميم Neo Brutalist متقدم، فائق السرعة، متوافق مع SEO ومُحسن للذكاء الاصطناعي مع دعم كلي لـ RTL واللغة العربية.
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: egypt-trends
Domain Path: /languages/
Tags: news, magazine, rtl-language-support, neo-brutalist, custom-menu, featured-images, custom-post-types, seo-ready, accessibility-ready
*/

/* Reset & Neo Brutalist Core CSS */
:root {
  --bg-color: #f8fafc;
  --card-bg: #ffffff;
  --text-color: #0f172a;
  --border-color: #000000;
  --accent-red: #ff3d00;
  --accent-gold: #ffd600;
  --accent-green: #00e676;
  --shadow-size: 4px 4px 0px #000000;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
  direction: rtl;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-ticker {
  background: #000000;
  color: #ffffff;
  border-bottom: 4px solid #000000;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-navbar {
  background: #ffffff;
  border-bottom: 4px solid #000000;
  padding: 15px 0;
  box-shadow: 0 4px 0 #000000;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.logo-text {
  font-size: 2.2rem;
  font-weight: 900;
  color: #000000;
  text-decoration: none;
  letter-spacing: -1px;
}

.logo-dot {
  color: var(--accent-red);
}

.nav-menu {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu a {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  padding: 6px 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  border-radius: 4px;
  box-shadow: 2px 2px 0 #000000;
  transition: all 0.1s;
}

.nav-menu a:hover {
  background: var(--accent-gold);
}

.brutal-card {
  background-color: var(--card-bg);
  border: 3px solid var(--border-color);
  box-shadow: var(--shadow-size);
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.brutal-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0px #000000;
}

.gold-widget-wrapper {
  background: #000000;
  color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 3px solid #000000;
  box-shadow: var(--shadow-size);
}

/* Pagination */
.pagination, .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}

.pagination .page-numbers {
  padding: 8px 14px;
  border: 2px solid #000000;
  background: #ffffff;
  color: #000000;
  font-weight: 800;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 2px 2px 0 #000000;
}

.pagination .page-numbers.current {
  background: var(--accent-gold);
}

