@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Piedra&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&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik+Doodle+Shadow&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
*{
    font-family: "Piedra", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;/*يخلي السحبه مرنه */
}
::selection{
    background-color: aquamarine;
}
header{
    background-color: antiquewhite;
    display: flex;
    width:100% ;
    position: fixed;
    z-index:999;/*اديلها اي قيمه عاليه */
    justify-content: space-between;
    align-items: center;
    padding: 10px 200px;
}
 .logo{
   /* margin-left: 50px; */
   text-decoration: none;
   text-transform: uppercase;/*تحويل الكلام الى كابتل*/
   color: darkblue;
   font-size: 1.8em;
   font-weight: 700;/*تعبه اللون*/
}
.navgishion a{   
    color: darkblue; 
    text-decoration: none;
    font-size: 1.8em;
    padding-left:30px;
    /*transition: 0.7s ease;/*الرجعه حق بعد ماتبعد الماوس*/
} 
.navgishion a:hover{
    /* box-shadow: 0 5px 25px rgb(1, 1, 1); */
    
    color: #601cfc;
    /* transform: scale(1.2); */
}
 .mainn{
    padding: 100px 200px;
    width: 100%;
    min-height: 100vh;/*veohatch يعني شي امامانا كبير عادي كبره*/    
    display: flex;
    align-items: center;/* align-items: center ماينفع تفعل display: flex; الا اذا فعلت */
    background: url("./img/backgruond.2jpg.jpg")  no-repeat;
    background-size: cover;
    background-position: center;/*طرحنا في الصوره في النص  هي اصلا في نص بس ولو افعل هاكذا تضمن التصميم*/
    background-attachment: fixed;/*لما تجي تنزل الصوره بتتغطي تغطي مش ضروري تفعله بس حالي تطلع ضخمه*/
}
 .mainn h2{
    color: white;
    font-size: 1.4em;
    font-weight: 500;/*يكبر الخط*/    
 }
 .mainn h3{
    color:white ;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;/*تعمل مساحات بين الااحرف*/
    margin-bottom: 30px;
 }
 .mainn span{
    display:inline-block;/*عشان افعلها ميرجين ضروري تفعل هاكذا enline elment الااسبان هي */
    margin-top: 15px;
     color:cornflowerblue ;
    font-size: 3em;
    font-weight: 600;
 }
 .main-bouton{
    color:white ;
    font-size: 1.1em;
    font-weight: 700;
    background-color:cornflowerblue ;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    border-radius: 15px;
    display: inline-block;/*لانa هو نفس الااسبان عشان تفعل له ميرجن ضروري تفعل اين لاين بلوك */
    padding: 0.9375em 2.1875em;
    margin-bottom: 30px;
    transition: 0.7s ease;/*الرجعه حق بعد ماتبعد الماوس*/
 }
  .main-bouton:hover{
    background-color: #601cfc;
    transform: scale(1.1);/*يكبر من حجمه */
  }
  .social-icons a{
    color: white;
    font-size: 1.7em;
    padding-right: 30px;
    text-decoration: none;
    transition: 0.7s ease;
  }
  .social-icons a:hover{
    transition: 0.7s ease;
    transform: scale(1.1);
    color:aqua;
  }
  .tittle{
    display: flex;/*رغم انهي لحالها بس فعلنا هاكذا عشان نعمل الذي بعدها jastifi content*/
    justify-content: center;
    color: #601cfc;
    font-size: 2.2em;
    font-weight: 800;
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .content{
   
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    flex-direction:row;/*لوتشتي هم جمب بعض*/
   /* flex-direction:column لو تشتيهم تحت بعض*/
   flex-wrap:wrap;/*لو صغرت الشاشه وماعبش مساحه تنزل تحت بعض هاذا ميزتها*/

  }
  .card{
    background-color: antiquewhite;
    width:30%;
    box-shadow: 0 5px 25px rgb(1 1 1);
    margin: 10px;
    border-radius: 10px;
    padding: 25px;
     transition:0.7s ease ;/*الرجعه حق بعد ماتبعد الماوس*/
  }
  .card:hover{
    cursor: pointer;   
    transform: scale(1.1);
  }
  .icon{
    color:#601cfc;
    text-align: center;
    font-size: 8em;
    font-weight: 700;
  }
  .info{
    text-align: center;
  }
  .info h3{
    color: black;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 10px; 
}

  /* project */


  #Project{ 
    background-color:black;
  }
.Project  .content{    
    display: flex;

    padding: 10px;
    margin: 10px 10px;
    background-color:black;
}
.Project-card{  
     
    flex-wrap: wrap; 
    border-radius: 15px;
    flex-direction: row;
    padding: 10px;
    margin: 10px 50px;
    background-color: azure;
    /* text-align: center; */
    min-height: 14em;
    /* overflow: hidden;لو خرجت الصوره تخليها تدخل بس انت الصوره حقك صغيره */
    transition: 0.7s ease;
}
.Project-card:hover{
    transform: scale(1.1);

}
.Project-img{
    margin-left: 30px;
    width: 100%;
    /* border: 1px solid black; */
    /* border-radius: 25px; */
    
}
.Project-card:hover .Project-img{
     opacity: 0.9;/*شفافيه الصوره كانهي تسعين في الميه */    
}
.Project-info{
    padding: 1em;
}
.Project-catgory{
    font-size: 25px;
    color: black;
}
.Project-tittle{
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 10px;
}
.more-detals{
    text-decoration: none;
    color:#601cfc;
    
}
.more-detals:hover{
    
    color: #601cfc;
    
}
@media (max-width:1023px){
  header{
    margin: 0 10px;
    padding: 12px 20px;
    width: 100%;
    position: fixed;
    z-index: 999;
    
    
    
  }
  .logo{
     position: relative; 
  }
  .navgishion a{
    left: 20px;
    /* justify-content: center; */
     /* right: 60px; */
   /* display: flex; */
     /* position: absolute; */
  }
  .navgishion a{
    padding: 0 2px;
    /* display: inline-block;
    right:20px;  */

    /* position: absolute; */
  }
  
  .mainn{
    padding: 30px 40px;
     background-position: center;
  }
  .content{
    align-items: center;
    flex-direction: column;
    flex-wrap:wrap;
  }
  .card{
    width: 90%;
  }
   #Project{ 
    background-color:white;
    align-items: center;
  }
   
.Project-card{
  background-color: aliceblue;
  margin: 0 10px;
}
.Project .content{
  background-color: aliceblue;

}

}
