/* إعدادات عامة */
body.home-page {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #000;
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("foto.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #f0f0f0;
}

/* الشريط العلوي */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  flex-wrap: wrap;
  position: relative;
  z-index: 1001;
}

/* الشعار */
.logo img {
  width: 70px;
  height: auto;
}

/* زر القائمة ☰ */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* القائمة الأفقية للأجهزة الكبيرة */
@media (min-width: 821px) {
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    font-size: 14px;
    padding: 6px 12px;
    background-color: #000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.main-nav ul li a:hover {
    background-color: #910000;
}
}
.main-nav ul li a.active{
  background-color: darkred;
  color: #fff;
}

/* القائمة الجانبية للأجهزة الصغيرة */
@media (max-width: 820px) {
.menu-toggle {
    display: block;
}

.main-nav {
    position: fixed;
    top: 0;
    left: -250px; /* تظهر من اليسار */
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1000;
    flex-direction: column;
}

.main-nav.active {
    left: 0;
}

.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    list-style: none;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
}
}

/* المحتوى الرئيسي */
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 30px;
}

main h1 {
  font-size: 40px;
  margin: 30px 0 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

main p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 915px;
  margin-bottom: 20px;
}

/* زر الحجز */
.btn.booking-button {
  margin-top: 60px;
  padding: 12px 25px;
  background-color: #0b971e;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.btn.booking-button:hover {
  background-color: #383636;
  color: #fff;
}

/* التذييل */
footer {
  background-color: rgba(0,0,0,0.7);
  padding: 30px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}


* زر القائمة */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* القائمة الجانبية للأجهزة الصغيرة */
@media (max-width: 820px) {
.menu-toggle {
    display: block;
}

.main-nav {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1000;
}

.main-nav.active {
    left: 0;
}

.main-nav ul {
    flex-direction: column;
    list-style: none;
    padding-left: 20px;
}

.main-nav ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
}

}
