/* ===== عام ===== */
body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* ===== Header ===== */

header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: white;
  padding: 10px 20px;
  height: 60px;
  position: relative;
}


header h1 {
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
}

.logo {
  position: absolute;
  left: 20px;
  top: 100px;
  width: 140px;
  height: auto;
  border-radius: 8px;
  z-index: 10; /* ✨ يخليه فوق كل شيء */
  border: 2px solid white;
}




.menu-btn {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
  z-index: 1100;
}

/* ===== Sidebar ===== */
.sidebar {
  position: fixed;
  right: 0;
  top: 60px;
  width: 220px;
  height: calc(100% - 60px);
  background-color: #000000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding-top: 20px;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 12px 0;
}

.sidebar a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px 20px;
  transition: background 0.2s;
}

.sidebar a:hover {
  background-color: #d80027; /* أحمر فلسطيني */
}

/* ===== Main ===== */
main {
  margin-right: 0;
  padding: 20px;
  margin-bottom: 60px; /* لتجنب التغطية من الفوتر */
}

.intro h2 {
  color: #000000; /* أخضر فلسطيني */
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.highlights {
  display: flex;
  flex-direction: column; /* كل كارت تحت الآخر */
  gap: 15px;
  margin-top: 20px;
}

.highlight-card {
  text-align: center;
  background-color: white;
  border-right: 4px solid #da0000; /* أحمر فلسطيني */
  padding: 12px;
  border-radius: 6px;
  flex: 1 1 200px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.highlight-card-1 {
  display: flex;
  flex-direction: column; /* الصورة فوق النص */
  text-align: right; /* النص على اليمين */
  gap: 15px;
  margin-top: 20px;
  background-color: white;
  border-right: 4px solid #D80027;
  padding: 12px;
  border-radius: 6px;
  flex: 1 1 200px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.highlight-card-3 {
  text-align: center;
  background-color: #fffaf4;
  border-right: 6px solid #da0000;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  max-width: 600px;
  margin: 30px auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
}

.highlight-card h2 {
  color: #c0392b;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.highlight-card p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #2c3e50;
}

/* زر الأغاني البرعمانية */
.song-button {
  display: inline-block;
  background-color: #000000;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.song-button:hover {
  background-color: #d80027;
}



.highlight-card h2 {
  color: #c0392b;
  margin-bottom: 15px;
  font-size: 1.8em;
}

.highlight-card p {
  font-size: 1.1em;
  color: #2c3e50;
}



.place-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-left: 5px solid #d80027; /* أحمر فلسطيني */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 20px 0;
  padding: 20px;
  gap: 20px;
}

.place-section img {
  width: 40%;
  border-radius: 10px;
  object-fit: cover;
}

.text-content {
  flex: 1;
}

.text-content h2 {
  color: #000000; /* أخضر فلسطيني */
  margin-top: 0;
}

.text-content p {
  line-height: 1.8;
  color: #333;
}

.days{
  text-align: center;
}

.more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #000; /* أسود فلسطيني */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.more-btn:hover {
  background-color: #d80027; /* أحمر */
}

/* للهواتف */
@media (max-width: 768px) {
  .place-section {
    flex-direction: column;
    text-align: center;
  }

  .place-section img {
    width: 90%;
  }
}


.gallery {
  text-align: center;
  padding: 40px 20px;
  background-color: #f7f7f7;
}

.gallery h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.image-container {
  width: 100%;
  max-width: 600px;   /* نفس الحجم على كل الأجهزة */
  height: 400px;      /* ارتفاع ثابت */
  object-fit: cover;  /* يمنع التشويه ويقص الزيادة */
  display: block;
  margin: 0 auto;     /* توسيط الصورة */
}


.image-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.image-container img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.05);
}

.hero {
  position: relative;
  width: 100%;
  max-height: 500px; /* ارتفاع الصورة */
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* الصورة تغطي المساحة */
  filter: brightness(70%); /* يخلي النص واضح */
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;



  font-size: 20px;     /* ثابت */
  font-weight: bold;

  padding: 8px 12px;
  border-radius: 6px;
  line-height: 1.2;
}



/* ===== عام ===== */
body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* يخلي الصفحة دايمًا بطول الشاشة */
}

/* ===== Main ===== */
main {
  flex: 1; /* يخلي المحتوى يتمدد حسب الطول */
  padding: 20px;
}

/* ===== Footer ===== */
footer {
  background-color: #000; /* أسود فلسطيني */
  color: white;
  text-align: center;
  padding: 12px 0;
  width: 100%;
}


.insta-icon {
  width: 28px;
  height: 28px;
}

/* ===== Media ===== */
@media (min-width: 768px) {
  main {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .logo {
    left: 10%;           /* نخليه في النص أفقيًا */
    top: 80px;            /* نخليه قريب من الأعلى */
    transform: translateX(-50%); /* يوسّطه تمامًا */
    width: 50px;         /* نصغّر حجمه شوي */
  }
}

@media (max-width: 768px) {
  .hero-text {
    font-size: 20px;   /* أصغر لكن متناسق */
    right: 6%;
    top: 15%;
  }
}
