body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: white;
  color: #333;
}

/* header */
header {
  display: flex;
  background-color: #004080;
  color: #fff;
  padding: 10px 20px;
}
/* the part of the header  */
nav {
  display: flex;               /* نضع العناصر أفقياً */
  justify-content: space-between; /* تباعد بين العنوان والقائمة */
  align-items: center;         /* نوسّطهم عموديًا */
}


nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  position: relative;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  display: block;
}

/* القائمة المنسدلة */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #004080;
  min-width: 160px;
  z-index: 1000;
}

.dropdown-content li a {
  padding: 10px;
  color: #fff;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li a:hover {
  background-color: #003060;
}

.hero {
  background: url('https://lp-cms-production.imgix.net/2025-04/GettyImages-1450546518-16.9.jpg?auto=format,compress&q=72&w=1440&h=810&fit=crop') no-repeat center center/cover;
  color: white;
  padding: 80px 20px;   /* المسافة داخل القسم */
  text-align: center;
  position: relative;
  min-height: 300px;    /* يمكنك تغييره حسب الحاجة */
}

/* لتعتيم الخلفية ووضع طبقة فوق الصورة */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* تظليل الصورة */
  z-index: 1;
}

/* لجعل النص فوق طبقة التعتيم */
.hero h2,
.hero p {
  position: relative;
  z-index: 2;
}
.content {
      max-width: 800px;
      margin: 30px auto;
      padding: 20px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}
/* the container of the articles in destinatios pages */
.container {
      max-width: 800px;
      margin: 30px auto;
      padding: 20px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

/* footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
}


.image-box {
  text-align: center;
  margin: 30px 0;
}

.image-box img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-box img:hover {
  transform: scale(1.03);
}
