/* الخطوط */
body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  text-align: right;
  line-height: 1.7;
  font-size: 19px;
}

/* الهيدر */
header {
  text-align: center;
  background: #c69c6d;
  color: #fff;
  padding: 35px 10px;
}

header h1 a {
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
}

header p {
  margin: 5px 0;
  font-size: 20px;
}

/* صورة البطل */
.hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .6s;
}

.hero img:hover {
  transform: scale(1.03);
}

/* المحتوى الرئيسي */
main {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

h2 {
  color: #c69c6d;
  text-align: center;
  font-size: 24px;
  margin-bottom: 16px;
}

/* الأزرار */
.buttons {
  text-align: center;
  margin-top: 25px;
}

.buttons button {
  background: #b57f50;
  color: #fff;
  border: none;
  padding: 12px 22px;
  margin: 6px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 17px;
}

/* أزرار الاتصال */
.contact-buttons {
  text-align: center;
  margin: 30px 0;
}

.contact-buttons a {
  display: inline-block;
  margin: 8px;
  padding: 12px 20px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
}

.contact-buttons .call {
  background: #b71c1c;
}

.contact-buttons .whatsapp {
  background: #1a9d4c;
}

/* الأيقونات الاجتماعية */
.social {
  text-align: center;
  margin: 30px 0;
}

.social a {
  color: #c69c6d;
  margin: 0 10px;
  font-size: 28px;
}

/* الفوتر */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
  margin-top: 40px;
}

footer p {
  font-size: 14px;
  margin-top: 8px;
}

footer span {
  color: #fff;
  background: #a46d3a;
  padding: 2px 6px;
  border-radius: 6px;
}

/* الكلمات المفتاحية */
.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.keyword-btn {
  background: #c69c6d;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 17px;
}

/* روابط متعلقة */
.related-links {
  text-align: center;
  margin: 30px 0;
}

.related-links h3 {
  color: #c69c6d;
  margin-bottom: 14px;
  font-size: 20px;
}

.related-btn {
  background: #c69c6d;
  color: #fff;
  padding: 10px 18px;
  margin: 6px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform .25s, box-shadow .25s;
}

.related-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(198,156,109,0.35);
}

/* Responsive */
@media(max-width:600px){
  header h1 {
    font-size: 1.8rem;
  }
  header p {
    font-size: 1rem;
  }
  .hero img {
    height: 220px;
  }
  .buttons button {
    font-size: 15px;
  }
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}
