

body {
  font-family: 'Amiri', serif;
  margin: 0;
  background-color: #fff;
  animation: fadePage 1s ease-in-out;
}
@keyframes fadePage {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}

/* الهيدر */
.top-bar {
  background-color: #fff;
  border-top: 5px solid #d8974d;
  border-bottom: 5px solid #b07b37;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  margin-bottom: 40px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}
.search-box {
  background-color: #f1f1ed;
  border: 1px solid #c9c4a2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 4px 10px;
}
.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Amiri', serif;
  font-size: 14px;
  color: #7b6849;
  width: 100px;
}
.search-box button {
  background-color: #998036;
  color: #fff;
  border: none;
  padding: 5px 8px;
  border-radius: 4px;
}
.logo {
  height: 90px;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.1);
}
.nav {
  display: flex;
  gap: 30px;
  margin: 10px 0;
}
.nav-link {
  font-weight: bold;
  font-size: 17px;
  color: #7b6849;
  transition: 0.3s;
}
.nav-link:hover {
  color: #998036;
}
.nav-link.active {
  color: #445f3a;
}

/* قسم المحتوى */
.section-content {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: #5b6a58;
  font-size: 18px;
  line-height: 1.8;
}

/* الصور */
.carousel-inner .row {
  margin: 0;
}
.carousel-inner .col-4 {
  padding: 0 5px;
}
.carousel-inner img {
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* نقاط الكاروسيل */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d8974d;
}

/* الخريطة */
iframe {
  width: 100%;
  height: 400px;
  border: none;
  margin-top: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* الفوتر */
footer {
  background-color: #4d5946;
  padding: 50px 0;
  position: relative;
}
.social-icon img {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: inset 0 0 10px rgba(255, 215, 0, 0.4), 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.social-icon img:hover {
  transform: scale(1.1);
}
.palm-img {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  height: 150px;
}
