/* Add custom CSS styles below */ 
/* خلفية الصفحة */
body {
  background-color: #f8f5f2;
  color: #2b2b2b;
  font-family: 'Helvetica Neue', sans-serif;
}

/* العناوين */
h1, h2, h3, h4, h5 {
  color: #5b0f12;
}

/* الروابط */
a {
  color: #5b0f12;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #c9a86a;
}

/* أزرار */
.button, .btn {
  background-color: #5b0f12;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.button:hover, .btn:hover {
  background-color: #7a1b1d;
}

/* البطاقات أو الكروت */
.card {
  background-color: white;
  border: 1px solid #7c1c1e	 ;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px;
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* خلفية الفوتر */
footer, .footer, #footer, .site-footer {
  background-color: #4B2E2E !important; /* لون اللوغو */
  color: #ffffff !important;
  padding: 30px 0;
}

/* النصوص والروابط */
footer a, .footer a, #footer a, .site-footer a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* عند المرور */
footer a:hover, .footer a:hover, #footer a:hover, .site-footer a:hover {
  color: #c9a86a !important; /* ذهبي أنيق */
}
/* ضمان تلوين أيقونات السوشيال في الفوتر */
footer i.fa-facebook,
footer i.fa-facebook-f,
footer a[href*="facebook"] i {
  color: #1877f2 !important;
}

footer i.fa-twitter,
footer a[href*="twitter"] i {
  color: #1da1f2 !important;
}

footer i.fa-instagram,
footer a[href*="instagram"] i {
  color: #e4405f !important;
}

footer i.fa-youtube,
footer a[href*="youtube"] i {
  color: #ff0000 !important;
}

footer i.fa-linkedin,
footer a[href*="linkedin"] i {
  color: #0077b5 !important;
}