
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@160..700&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
:root {
    --background: #ece7e2;
    --main-color-A: #db903c;
    --main-color-B: #1d202d;
    --color: #63320a;
    --main-font: "El Messiri", serif;
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Tajawal", serif;
    background-color: var(--background);
}
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
ul {
  list-style: none;
  padding: 0;
}
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  font-size: 4rem;
  color: var(--main-color-A);
  cursor: pointer;
  display: none; 
  transition: opacity 0.3s ease;
}

  .hidden{
      display: none;
  }

/* END LOADER */

/* START NAVE */
header{
    background-color: var(--main-color-B);
    position: fixed;
    width: 100%;
    height: 10vh;
    z-index: 100;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1366px;
    height: 10vh;
    margin: 0 auto;
    padding: 0 5rem;
}
nav .fa-bars{
    color: var(--main-color-A);
    display: none;
}
nav .logo img{
    width: 100px;
}
nav .nav-items{
    display: flex;
    list-style: none;
}
nav .nav-items .nav-item{
    padding: 0 1rem;
}
nav .nav-items .nav-item .nav-link{
    text-decoration: none;
    color: var(--background);
    font-size: 1.4rem;
    transition: 0.5s;
}
nav .nav-items .nav-item .nav-link:hover{
    color:var(--main-color-A);
}
/* END NAVE */

.container {
    flex: 1;
}


.footer-section img {
    width: 120px;
  }
  
  footer {
    width: 100%;
    background-color: #1d202d;
    color: aliceblue;
    padding: 2rem 0;
  }

  footer {
    background-color: var(--main-color-B);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}
  
  .footer-section a {
    text-decoration: none;
    color: aliceblue;
    transition: 0.3s;
  }
  
  .footer-section a:hover {
    font-size: 1rem;
    color: #f9a825;
  }
  
  .footer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .content-footer {
    max-width: 300px;
  }
  
  .content-footer p {
    margin-top: 10px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  
  /* تصميم خاص بالأيقونات الاجتماعية */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
  }
  
  .social-icons li a {
    font-size: 1.5rem;
    color: #f9a825;
    transition: 0.3s;
  }
  
  .social-icons li a:hover {
    color: #fff;
    transform: scale(1.2);
  }
  
  .contact-us h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .contact-us ul,
  .linkes ul {
    padding: 0;
  }
  
  .contact-us ul li,
  .linkes ul li {
    margin: 10px 0;
    font-size: 1rem;
  }
  
  .contact-us ul li i {
    margin-left: 8px;
    color: #f9a825;
    font-size: 1rem;
  }
  
  .copyright {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    color: #f1f1f1;
    border-top: 1px solid #444;
    padding-top: 10px;
    width: 100%;
  }
  
  /* END FOOTER */
  
  
  
  



















/* Responsive Design */
@media(max-width:1300px){
    *{
        font-size: 85%;
     }
     .hero-image img{
        width: 450px;
     }
     .features-section .qualities{
      flex-wrap: wrap;
      justify-content: center;
     }
}
@media(max-width:880px){
    *{
        text-align: center;
    }
    .hero-image{
        display: none;
    }
    .hero-section{
        align-items: center;
        padding: 2rem 0;
        width: 80%;
    }
    .hero .btn{
        align-self: center;
    }
    .about-us img{
      display: none;
    }
    .about-content{
      justify-content: center;
      align-items: center;
    }
    .about-content p{
      font-size: 1.4rem;
    }


    .vision-us img{
      display: none;
    }
    .vision-content{
      justify-content: center;
      align-items: center;
    }
    .vision-content p{
      font-size: 1.4rem;
    }

}


@media(max-width:570px){
  *{
    font-size: 75%;
 }
    nav .fa-bars{
        display: block;
        font-size: 3rem;
    }
    nav .nav-items{
        display: none;
        position: absolute;
        left: 0;
        top: 10vh;
        flex-direction: column;
        width: 100%;
        background-color: var(--main-color-B);
        padding: 2rem;
        transition: 0.5s;
        z-index: 1000;
    }
    nav .nav-items.active{
        display: flex;
    }
    nav .nav-items .nav-item{
        margin: 1rem 0;
    }
    .slide-div{
      width: 100%;
      overflow: hidden;
      padding-top: 18px;
    
    }
    .about-us img{
      display: none;
    }
    .content h1,h4,p{
      margin: 10px 0;
    }
    .about-content{
      justify-content: center;
      align-items: center;
    }
    .contact-div {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .content-footer img {
      width: 100px;
    }
    .contact-us h2 {
      font-size: 1.6rem;
    }
    .linkes h2 {
      font-size: 1.6rem;
    }
    .linkes a{
      font-size: 1.3rem;
    }
    .contact-us ul li,
    .linkes ul li {
      font-size: 1.6rem;
    }

}
