/* تعريف الخط Cairo */
@font-face {
    font-family: 'CairoBold';
    src: url('fonts/Cairo-Bold.ttf') format('truetype');
    font-weight: bold;
}

/* أساسية */
body { 
    font-family: 'CairoBold', sans-serif; 
    margin: 0;
    padding: 0;
    background-color: #fff;
    direction: rtl;  /* اتجاه النص من اليمين لليسار */
    text-align: right; /* محاذاة النصوص لليمين */
    background-image: url('assets/img/tripoli libya طرابلس ليبيا.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between; /* مسافة بين الشعار والصورة */
    align-items: center;
    position: relative;
    direction: rtl; /* اتجاه النص من اليمين لليسار */
}

/* محاذاة الشعار */
header .logo-area {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

header .logo-area img {
    height: 100px;
    margin-left: 15px;
}

/* محاذاة الروابط إلى المنتصف */
.nav-container {
    display: flex;
    justify-content: center; /* محاذاة الروابط إلى المنتصف */
    gap: 25px;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

/* صورة اسم الشركة على الطرف الأيسر */
.logo-image {
    position: absolute;
    left: 10px;
}

.company-name-img {
    height: 70px; /* تعديل الحجم حسب الحاجة */
}


/* Hero Section */
.hero { 
    background: url('assets/img/tripoli libya طرابلس ليبيا.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

/* قسم الخدمات */
.services {
  padding: 50px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
}

.services h2 {
  color: #ffffff;
  font-size: 50px;
  padding-right: 20px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* شكل كل خدمة */
.service {
  width: 600px;
  text-align: center;
}

/* الصورة والغلاف */
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* تأثير التعتيم والنص */
.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 40px;
  margin: 0;
}

/* قسم الاتصال */
.contact { 
    background: rgba(237, 237, 237, 0.8); 
    padding: 50px 0; 
    text-align: center; 
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

.contact input, 
.contact textarea, 
.contact button {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact textarea {
    resize: vertical;
    height: 120px;
}

.contact button {
    background-color: #857a1d; /* الذهبي الفاتح */
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.contact button:hover {
    background-color: #5f571a; /* البني المتوسط */
}

/* Footer */
footer { 
    background: #3a3522; /* البني الداكن */
    color: #f2e000; /* الأصفر الفاتح */
    text-align: center; 
    padding: 20px 0;
}

footer p {
    font-size: 18px;
}



@media (max-width: 768px) {
    body {
        background-size: cover;
        background-position: top center;
        background-attachment: scroll; /* لإصلاح مشاكل الثبات على الموبايل */
    }
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-area {
        flex-direction: column;
        align-items: center;
        padding-right: 0;
    }

    header .logo-area img {
        margin: 0 auto 10px;
    }

    nav {
        flex-direction: column;
        gap: 10px;
        padding-left: 0;
        margin-top: 15px;
    }

    .hero {
        font-size: 40px;
        padding: 0 15px;
        text-align: center;
    }

    .services h2,
    .contact h2 {
        font-size: 35px;
    }

    .overlay h3 {
        font-size: 28px;
    }

    .service {
        width: 90%;
    }
    .hero {
        background-size: cover;
        background-position: top center;
    }
}