/* استيراد خط Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo&display=swap');

body {
  font-family: 'Cairo', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.8;
}

/* ====== الهيدر ====== */
header {
  background-color: #333333; /* لون غامق مثل الفيديو */
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin-bottom: 20px;
}

header img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 20px;
}

/* ====== النافبار ====== */
nav {
  background-color: #444444; /* أفتح شوي من الهيدر */
  padding: 15px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 16px;
}

nav a:hover {
  text-decoration: underline;
  color: #ffd700; /* ذهبي عند المرور */
}

/* ====== الأقسام ====== */
section {
  margin: 20px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h2 {
  color: #006064;
  margin-bottom: 15px;
}

/* ====== الصور داخل الصفحة ====== */
img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}


/* تنسيق رابط أذكار اليوم */
.azkar-link {
  text-align: center;
  margin-bottom: 10px;
}

.azkar-link a {
  color: orange;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.azkar-logo {
  height: 30px; /* ضبط حجم اللوجو */
  width: auto;
}

/* لون الفوتر مثل الكلية الجامعية */
.footer-college {
  background-color: #YOUR_COLLEGE_FOOTER_COLOR; /* استبدلي الكود باللون المطلوب */
  color: white;
  padding: 15px 0;
  text-align: center;
}


/* ====== الفوتر ====== */
footer {
  background-color: #f4f4f4; /* من الفيديو */
  color: #333;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 40px;
}

/* ====== تأثير دخول الصفحة (اختياري) ====== */
body {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
