@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --bg-main: #edf1f5; /* 60% خلفية الموقع */
  --bg-card: #ffffff; /* خلفية الهيدر والعناصر العائمة */
  --text-main: #1e293b; /* 30% النصوص واللوقو (كحلي عميق) */
  --text-muted: #64748b; /* نصوص ثانوية (رمادي فولاذي) */
  --accent-color: #0284c7; /* 10% أزرار وأيقونات (أزرق مخبري) */
  --hover-color: #0369a1; /* درجة الـ Hover للأزرار */
  --border-subtle: #e2e8f0; /* لون الحدود الناعمة */
}

* {
  font-family: "Poppins", "Cairo", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  height: 1500px;
  background-color: var(--bg-main);
}

header {
  background-color: var(--bg-card);
  width: 100%;
  position: fixed;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  direction: rtl;
}

.logo {
  text-decoration: none;
  color: var(--text-main);
  font-size: 1.9em;
  font-weight: 700;
}
.navigation {
  display: flex;
  gap: 20px;
}

.navigation a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 1.5em;
}
.navigation a:hover {
  color: var(--hover-color);
}

section {
  padding: 130px 40px 40px 40px;
}

.main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
  gap: 40px;
}

.lift-main-box {
  flex: 1;
  text-align: right;
}

.lift-main-box h2 {
  font-size: 2.1em;
  font-weight: 500;
}

.lift-main-box h2 span {
  display: block;
  margin-top: -15px;
  font-size: 1.4em;
  color: rgb(21, 63, 100);
  font-weight: 800;
}

.lift-main-box h3 {
  color: var(--text-muted);
  font-size: 1.9em;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.social-icons a {
  color: var(--accent-color);
  font-size: 2em;
  padding: 10px 10px;
}

/*Right Image */

.first-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.first-image img {
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .logo {
    font-size: 1.4em;
  }
  .navigation {
    font-size: 0.96em;
  }
  section {
    padding: 100px 20px 40px 20px;
  }
  .main {
    flex-direction: column-reverse;
    gap: 25px;
    text-align: center;
  }
  .lift-main-box {
    text-align: center;
  }
  .lift-main-box h2 {
    font-size: 1.8em;
  }
  .lift-main-box h3 {
    font-size: 1.3em;
  }
  .social-icons a {
    font-size: 2.8em;
  }
  .first-image img {
    max-height: 45vh;
  }
}
/* 
git add .
git commit -m "تعديل ألوان الهيدر"
git push 
*/
