/* ===== عام ===== */
body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  padding-bottom: 80px; /* مساحة أسفل المحتوى للفوتير */
}

/* ===== 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;
}

.intro h2 {
  color: #000000;
  text-align: center;
  margin-bottom: 10px;
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.highlight-card {
  background-color: white;
  border-right: 4px solid #D80027; /* أحمر فلسطيني */
  padding: 20px;
  border-radius: 6px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  text-align: center;
  line-height: 1.8;
}

/* ===== زر العودة ===== */
.song-button {
  display: inline-block;
  background-color: #d80027;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.song-button:hover {
  background-color: #b20020;
}


/* ===== عام ===== */
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;
  }
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

@media (max-width: 768px) {
  .logo {
    left: 10%;           /* نخليه في النص أفقيًا */
    top: 80px;            /* نخليه قريب من الأعلى */
    transform: translateX(-50%); /* يوسّطه تمامًا */
    width: 100px;         /* نصغّر حجمه شوي */
  }
}
