/*
Theme Name: Alhabbar Child
Template: astra
*/

/* الخطوط العامة */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

body {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  background-color: #f4f9ff;
  color: #002b5c;
  margin: 0;
  padding: 0;
}

/* العناوين */
h1, h2, h3 {
  color: #0B3D5C;
  margin-bottom: 15px;
}

/* الهيدر */
header {
  background: #00003D;
  color: white;
  padding: 20px;
  text-align: center;
}

/* خلفية أسفل القائمة */
#header-image {
  background-image: url('images/head.png');
  background-size: cover;      /* تجعل الصورة تغطي كامل المساحة */
  background-position: center; /* تضع الصورة في المنتصف */
  background-repeat: no-repeat;/* تمنع التكرار */
  width: 100%;
  height: 300px;               /* حددي ارتفاع الخلفية حسب رغبتك */

}

header img {
  height: 80px;
  margin-bottom: 10px;
}

/* القائمة */
nav {
  background: #003366;
  padding: 15px;
  text-align: center;
  position: sticky; /* تثبيت القائمة */
  top: 0;
  z-index: 1000;
}

nav a {
  color: #D4A574;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 5px;
}

nav a:hover {
  color: #ffffff;
  border-bottom: 2px solid #D4A574;
}

/* الأقسام */
section {
  padding: 40px;
  text-align: center;
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* البطاقات */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* معرض الصور والفيديو */
#gallery img, #gallery video {
  border-radius: 8px;
  margin: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* الفوتر */
footer {
  background: #0B3D5C;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* تنسيق الهيدر */
.site-header {
  background-color: #0B3D5C; /* خلفية داكنة ليظهر النص الأبيض */
  padding: 20px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center; /* يضع الشعار يمين والنص يسار */
}

.logo img {
  max-width: 200px;   /* حجم الشعار أكبر */
  height: auto;
}

.site-title h1 {
  color: #ffffff;     /* النص باللون الأبيض */
  font-size: 28px;    /* حجم الخط */
  margin: 0;
  text-align: center;   /* النص في الوسط */

}


.hero-text {
  font-size: 48px;       /* حجم الخط كبير */
  font-weight: bold;     /* خط عريض */
  color: #ffffff;        /* النص باللون الأبيض */
  text-align: center;    /* النص في المنتصف */
  margin: 30px 0;        /* مسافة فوق وتحت النص */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* ظل خفيف ليظهر أوضح */
}


