body{
    background-color: #f4f4f4;
    color: #555;
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    margin: 0;
    font-weight: 1000;
  background-image: url('/images/unnamed.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin: 0;
 
}
html, body {
  height: 100%;
}

.container{
    width: 80%;
    margin: auto;
    overflow: hidden;
}
nav{
    background: #333;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}
.main-header{
    background-color: orange;
    padding: 15px;
}
.navbar{
   list-style: none;
  display: flex;               /* عرض العناصر في صف واحد */
  gap: 25px;                   /* مسافة بين الروابط */
  margin: 0;
  padding: 0;
}
.navbar li{
    display: inline;
}
.navbar ul{
    padding: 0;
    list-style: none;
    display: inline;
}
.navbar a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding-right: 15px;
    display: inline-block;
    padding: 18px;
    font-weight: bold;
    
    
}
.main-text h1{
   text-align: center;
   margin-top: 200px;
   font-family: 'Cairo-bold', sans-serif;
   font-weight: bold;
   color: whitesmoke;
   line-height: 1.6em;
}
.main-text p{
    text-align: center;
    color: orangered;
    font-family: 'Cairo', sans-serif;
}
.main-text {
  padding: 100px 20px 40px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* شفافية خفيفة فقط */
  color: #fff;
  font-family: 'Cairo', sans-serif;
}
.page-content {
  box-sizing: border-box;
  padding-right: 100px;
  background-color: rgba(0, 0, 0, 0.5);
  /* احذف السطر التالي: */
  /* padding-right: 1000px; */
  padding: 20px 20px 18px; /* أعلى - يمين/يسار - أسفل */
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
}

/* Style all font awesome icons */
.social-icons {
  margin-top: 100px;       /* مسافة من اللي فوق */
  margin-bottom: 40px;     /* مسافة من أسفل */
  text-align: center;      /* توسيط الروابط */
}

.fa {
  padding: 15px;
  font-size: 24px;
  width: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin: 0 10px; /* مسافة بين الأزرار */
}

/* Hover */
.fa:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

/* Whatsapp */
.fa-whatsapp {
  background: #25D366;
  color: white;
}
/* هذا هو الشكل الطبيعي للـ navbar على الشاشات الكبيرة */
.navbar {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* زر الهامبورجر مخفي على الشاشات الكبيرة */
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  padding: 10px 20px;
}

/* ⚠️ الشرط هنا فقط للشاشات الصغيرة */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar {
    display: none;            /* تخفيها فقط على الشاشات الصغيرة */
    flex-direction: column;
    background-color: #333;
    text-align: center;
  }

  .navbar.show {
    display: flex;            /* تظهرها عند الضغط */
  }

  .navbar li {
    margin: 10px 0;
  }
}
.main-footer{
    background-color: #333;
    text-align: center;
    color: white;
    padding: 20px;
}
@font-face{
  font-family: 'Cairo-bold';
  src: url('/images/Cairo-Bold.ttf');
}
