/* Add custom CSS styles below */ 
/* الخط العام */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');
body {
  font-family: 'Tajawal', sans-serif;
  background-color: #fffaf2;
  color: #3e2a11;
}

/* العناوين */
h1, h2, h3, h4 {
  color: #6b441a; /* لون عسلي غامق */
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0px 1px 3px rgba(150, 100, 30, 0.1);
}

/* الأزرار */
button, .btn, .button {
  background: linear-gradient(135deg, #c79543, #a46e23);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-weight: 600;
  transition: all 0.3s ease;
}
button:hover, .btn:hover, .button:hover {
  background: linear-gradient(135deg, #a46e23, #c79543);
  transform: scale(1.05);
}

/* صور المنتجات */
.product img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.product img:hover {
  transform: scale(1.04);
}

/* خلفية الأقسام */
.section-bg, .custom-section {
  background: linear-gradient(180deg, #fffaf2, #fbe5b7);
  padding: 40px 0;
  border-top: 1px solid rgba(150,100,30,0.1);
}

/* الهيدر */
.header, .navbar {
  background-color: #fffdf8;
  border-bottom: 1px solid rgba(150,100,30,0.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* العناوين داخل البنرات */
.banner-text, .hero-title {
  color: #4a2b0f;
  background: rgba(255, 240, 210, 0.8);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
}

/* فاصل تراثي */
hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #b58438, transparent);
  margin: 30px auto;
  width: 60%;
}

/* الفوتر */
footer {
  background-color: #f8e8c3;
  color: #3e2a11;
  padding: 30px 0;
  font-weight: 500;
  border-top: 1px solid rgba(150,100,30,0.2);
}

/* تأثير دخول ناعم */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}