* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tahoma", Arial, sans-serif;
}

body {
  background: #F4F0E4;
  color: #49614b;
  direction: rtl;
}

/* =========================
Navbar
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: #7F5539;
  position: sticky;
  top: 0;
  z-index: 1000;

  /* Animation دخول */
  animation: navDrop 0.8s ease;
}

@keyframes navDrop {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo {
  color: white;
  font-size: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* روابط الناف */
.nav-links a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
  padding: 6px 2px;
}

/* خط ذهبي متحرك */
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #FFF4DC;
  border-radius: 20px;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  transform: scale(1.08);
  color: #FFF4DC;
}

/* =========================
Hero Header
========================= */
.hero {
  position: relative;
  height: 70vh;
  background: url("Saudigirls.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Overlay (بني + ذهبي) */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(63, 39, 26, 0.75),
    rgba(180, 140, 90, 0.35)
  );
  z-index: 1;
}

/* محتوى الهيدر فوق الـ overlay */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
}

.hero-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* زر */
.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #7F5539;
  color: #FFF4DC;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* =========================
Sections
========================= */
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #7F5539;
}

.section p,
.section li {
  font-size: 18px;
  line-height: 1.7;
}

.section ul {
  margin-top: 10px;
  padding-right: 20px;
}
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 30px auto;

  background: #f7f5f1;
  border: 2px solid #b48c5a;
  border-radius: 14px;
} 

.btn-img {
  display: inline-block;
  width: 200px;
  height: 70px;
  background-image: url("https://i.postimg.cc/hjHTLNhd/Untitled19-20260216022624.png");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  transition: 0.3s;
}

.btn-img:hover {
  transform: scale(1.06);
}


/* =========================
Footer
========================= */
.footer {
  text-align: center;
  padding: 20px;
  background: #7F5539;
  color: white;
  margin-top: 40px;
}