/* Reset & Base */
* { box-sizing:border-box;margin:0;padding:0; }
body { font-family:Cairo,Arial,sans-serif; background:#fafafa; color:#222; line-height:1.8; direction:rtl;  font-size: 18px; }
.container { max-width:1100px; margin:auto; padding:20px; }

/* Header */
.site-header { background:#111; padding:15px 0; position:relative; }
.header-flex { display:flex; justify-content:space-between; align-items:center; }
.logo img { max-width:160px; height:auto; }
.main-nav { display:flex; gap:18px; }
.main-nav a { color:#fff; text-decoration:none; font-weight:600; }
.nav-toggle { display:none; font-size:26px; background:none; border:0; color:#fff; cursor:pointer; }

/* Hero */
.hero { text-align:center;  }
.hero h1 { font-size:2.2em; margin-bottom:10px; }
.hero p { font-size:1.2em; }

/* Zodiac Grid */
.zodiac-grid h2 { margin-bottom:20px; }
.zodiac-grid .grid { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; }
@media (max-width: 768px) {
  .zodiac-grid .grid {
  grid-template-columns:repeat(2,1fr);
  }
}
.zodiac-grid .grid a { background:#fff; padding:20px; text-align:center; border-radius:12px; font-weight:bold; color:#000; text-decoration:none; box-shadow:0 2px 6px rgba(0,0,0,.05); }

/* Latest Posts */
.latest-posts h2, .weekly-monthly h2, .yearly-predictions h2, .love-work-money h2, .tips h2, .newsletter h2 { margin:25px 0 15px 0; font-size:1.8em; }
.posts-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:15px; }
article { background:#fff; padding:15px; border-radius:12px; box-shadow:0 2px 6px rgba(0,0,0,.05); margin-bottom:15px; }
article h3, article h4 { margin-bottom:10px; }

/* Weekly & Monthly */
.tw9{
  background-color: #ededed;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  margin-bottom: 10px;
}
.tw9 .grid, .love-work-money .grid { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; }

@media (max-width: 768px) {
  .tw9 .grid, .love-work-money .grid {
  grid-template-columns:repeat(2,1fr);
  }
}

/* Newsletter */
.newsletter form { display:flex; gap:10px; margin-top:10px; }
.newsletter input { flex:1; padding:10px; border-radius:5px; border:1px solid #ccc; }
.newsletter button { padding:10px 20px; border:none; border-radius:5px; background:#111; color:#fff; cursor:pointer; }

.news-content ul{padding-right: 25px;padding-bottom: 20px;}

/* Footer */
.site-footer {
  background:#111;
  color:#fff;
  text-align:center;
  padding:25px 20px;
  margin-top:40px;
}

.footer-links {
  margin-bottom:10px;
}

.footer-links a {
  color:#e67e22;       /* لون الروابط */
  margin:0 10px;
  text-decoration:none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color:#d35400;
  text-decoration:underline;
}

.site-footer p {
  font-size:0.9em;
  margin-top:10px;
}

/* Responsive */
@media(max-width:768px){
  .footer-links { display:flex; flex-direction:column; gap:8px; }
}


.related-zodiac {
  background:#fafafa;
  border:1px solid #eee;
  border-radius:14px;
  padding:20px;
  margin:30px 0;
}

.related-zodiac h3 {
  font-size:1.2em;
  margin-bottom:15px;
  color:#222;
  position:relative;
}

.related-zodiac h3::before {
  content:"✔";
  margin-left:8px;
  font-size:1.2em;
}

.related-zodiac ul {
  list-style:none;
  padding:0;
  margin:0;
}

.related-zodiac li {
  margin-bottom:10px;
}

.related-zodiac a {
  display:block;
  background:#fff;
  padding:12px 15px;
  border-radius:10px;
  color:#e67e22;
  font-weight:500;
  text-decoration:none;
  transition:all .3s ease;
  border:1px solid #f0f0f0;
}

.related-zodiac a:hover {
  background:#e67e22;
  color:#fff;
  transform:translateX(-5px);
}

/* Responsive */
@media (max-width:768px) {
  .related-zodiac {
    padding:15px;
  }
  .related-zodiac a {
    padding:10px;
    font-size:.95em;
  }
}


/* =======================
   Breadcrumbs
======================= */
.breadcrumbs {
  font-size: 0.9rem;
  margin: 15px 0;
  padding: 10px 15px;
  background: #f9f9f9;
  border-radius: 8px;
  display: inline-block;
}

.breadcrumbs a {
  color: #e67e22; /* لون الروابط */
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #d35400; /* لون عند المرور */
  text-decoration: underline;
}

.breadcrumbs span {
  color: #555; /* النص النهائي */
  font-weight: 500;
}

/* الفاصل بين الروابط */
.breadcrumbs a::after {
  content: " » ";
  color: #999;
  margin: 0 5px;
}

.breadcrumbs a:last-child::after {
  content: ""; /* إزالة الفاصل عن آخر رابط */
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 0.85rem;
    padding: 8px 10px;
  }
}


/* Responsive */
@media(max-width:992px){.grid{grid-template-columns:repeat(2,1fr);} .posts-grid{grid-template-columns:1fr;}}
@media(max-width:768px){
  .nav-toggle { display:block; }
  .main-nav { position:absolute; top:70px; right:0; background:#111; width:100%; flex-direction:column; display:none; padding:15px; }
  .main-nav a { padding:10px 0; border-bottom:1px solid rgba(255,255,255,.1); }
  .main-nav.active { display:flex; }
}

/* روابط عامة */
a {
  color: #e67e22;       /* اللون الافتراضي */
  text-decoration: none; /* إزالة الخط السفلي */
  transition: color 0.3s; /* حركة سلسة عند hover */
}

/* عند المرور بالفأرة */
a:hover {
  color: #d35400;       /* لون عند hover */
  text-decoration: underline; /* خط سفلي عند المرور اختياري */
}

/* عند الضغط */
a:active {
  color: #c0392b;       /* لون عند الضغط */
}

.zodiac-grid a {
  color: #e67e22;       /* لون جديد */
  font-weight: bold;
  text-decoration: none;
}
.zodiac-grid a:hover {
  color: #d35400;
  text-decoration: underline;
}
