
/* START DEFAULT  */


/* START GOOGLE FONTS HERE  */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* END GOOGLE FONTS HERE  */


/* START SCRALL BAR HERE  */
/* width */
::-webkit-scrollbar {
    width: 20px;
    background-color: var(--color);
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px gray;
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--background-color);
    border-radius: 10px;
  }




/* END SCROLLBAR HERE  */

:root
{
    --background-color:#ffc410;
    --color:#241f20;
    --font-site: "Open Sans", sans-serif;
    --error-background:#CC0000;
}

body , html
{
    scroll-behavior: smooth !important;
}

*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.container
{
    width: 80%;
    height: 100%;
    margin: auto;
}


/* END DEFAULT  */


/* START NAVBAR */
nav
{
    width: 100%;
    padding: 25px 0px;
    background-color: var(--color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: italic;
}
nav .container 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav nav__logo 
{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

nav .nav__logo a
{
    text-decoration: none;
    font-size: 23px;
    color: var(--background-color);

}

nav .nav__logo:hover
{
    transform: scale(1);
}



nav .nav__content 
{
    list-style: none;
}

nav .nav__content  li 
{
    display: inline-block;
    padding: 10px 15px;
}


nav .nav__content  li a 
{
    text-decoration: none;
    font-size: 23px;
    color: var(--background-color);
    transition: all 0.3s ease-in-out;
}

nav .nav__content  li a:hover 
{
    opacity: 0.5;
}



.contact__btn a 
{
    font-size: 25px !important;
}


nav .burger 
{
    font-size: 23px;
    cursor: pointer;
    color: var(--background-color);
    transition: all 0.3s ease-in-out;
    display: none;
}


/* START SCREENS  */
@media(max-width:540px)
{
    nav 
    {
        position: static;
        top: 0px;
        z-index: 3;
    }
    /* nav.active 
    {
        position: fixed !important;
        top: 0px;
    } */
  .nav__content
  {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color);
    color: var(--background-color);
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    z-index: 99 !important;
  }
  .nav__content.active 
  {
    transform: translateX(0%) !important;
  }

  .nav__content li 
  {
    margin: 20px 0px;
  }


   .nav__content li a 
   {
    font-size: 30px !important; 
   }



  .burger
  {
    display: block !important;
    color: var(--background-color);
    position: static;
    right: 20px;
    z-index: 99;
  }
  .burger.active 
  {
    position: fixed;
    right: 20px;
  }
}


/* END SCREENS HERE  */


/* END NAVBAR  */


/* START HEADER HERE  */
header
{
    width: 100%;
    height: 100vh;
    background-image: url(../images/pexels-leandro-boogalu-5876-1390403.jpg);
    background-size: cover;
    background-attachment: fixed;
    font-family: var(--font-site);
    text-transform: capitalize;
    font-style: italic;   
}

header .container 
{
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header__content 
{
    text-align: center;
}

header .header__content  h2
{
    font-size: 65px;
    margin: 10px 0px;
}
header .header__content  p
{
    margin: 10px 0px;
}


header .header__content  a 
{
    text-decoration: none;

}

header .header__content  a button
{
    padding: 10px 25px;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 10px;
    outline: none;
    border: none;
    margin: 10px 0px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

header .header__content  a button:hover 
{
    background-color: var(--color);
    color: var(--background-color);

}

/* small screens */
@media(max-width:540px)
{
   header 
   {
  
    background-image: url('https://images.pexels.com/photos/841131/pexels-photo-841131.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
   }

   .header__content  h2 , p
   {
        color: var(--background-color);
   }


   .header__content a button
   {
        color: var(--color) !important;
        background-color:var(--background-color) !important;
        transition: all 0.3s ease-in-out;
   }

   .header__content a button:hover
   {
    background-color: var(--color) !important;
    color: var(--background-color) !important;
   }


}
/* END HEADER HERE */







/* START PROGRAM SECTION HERE  */
.program 
{
    padding: 60px 0px;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    text-align: center;

}

.program h3
{
    margin: 30px 0px;
    letter-spacing: 4px;
    font-size: 25px;
    position: relative;
}

.program h3::after
{
      content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}


.program .container 
{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.program .program__content .program__content__image
{
    margin: 20px 0px;
}


.program .program__content .program__content__image img
{       
    max-width: 250px;
    border: 3px solid var(--background-color);
    border-radius: 15px;
    padding: 4px;

}



.program__content__btn a
{
     padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    border: none; 
    outline: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;    
    text-decoration: none;
}

.program__content__btn a:hover
{
    background-color: var(--color);
    color: var(--background-color);
}





/*START   SMALL SCREEN  */

@media(max-width:540px)
{
    .program .container
    {
        flex-direction: column;
        display: flex;
        align-items: center;
        
        
    }


    .program__content
    {
        margin: 15px 0px;
    }
}


/* END SMALL SCREEN  */


/* END PROGRAM SECTION  */














/* START FOOTER HERE */
footer
{
    padding: 25px 0px;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: italic;
}
footer .container 
{
    display: flex;
    align-items: center;
    justify-content: center;
}


/* END FOOTER HERE  */



/* START LOADER PAGE HERE  */

.loading
{
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: var(--color);
    color: var(--background-color);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}


.loading.active 
{
    transform: translateY(100%) !important;
}

.loader {
    width: 64px;
    height: 64px;
    position: relative;
    animation: rotate 1.5s ease-in infinite alternate;
  }
  .loader::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    color: var(--background-color);
    background: currentColor;
    width: 64px;
    height: 32px;
    border-radius: 0 0 50px 50px;
  }
  .loader::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    background: #FFF;
    width: 8px;
    height: 64px;
    animation: rotate 1.2s linear infinite alternate-reverse;
  }
  
  @keyframes rotate {
    100% { transform: rotate(360deg)}
  }
        






/* END LOADER HERE */









/* START CAL SECTION HERE  */
.cal 
{
    position: fixed;
    left: 100%;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--color);
    color: var(--background-color);
    z-index: 2000000;
    font-family: var(--font-site);

    transition: all 0.8s ease-in-out;
}

.cal.active 
{
   left: 0% !important;
}
.cal .cal__close
{
    text-align: right;
    margin: 20px ;
    font-size: 23px;
    cursor: pointer;
}


.cal .cal__title
{
    text-align: center;
    margin: 10px;
    font-size: 30px;
}


.cal .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.cal .cal__content
{
   
    margin-bottom: 10px ;
}

.cal .cal__content input 
{
    width: 100%;
    padding: 10px 40px;
    border: none;
    outline: none;
    border-radius: 15px;
    text-align: left;

}

.cal .cal__content  
{
    text-align: center;
}

.cal .cal__content select 
{
     width: 100%;
    padding: 10px 80px;
    border: none;
    outline: none;
    border-radius: 15px;
    text-align: left;
}
.cal .cal__content label 
{
    margin: 10px 0px;
}

.cal .cal__content  button
{
    padding: 10px 25px;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    outline: none;
    border: none;
    cursor: pointer;
    margin: 20px;
    transition: all 0.3s ease-in-out;
}
.cal .cal__content  button:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}

.cal__result 
{
    transition: all 0.4s ease-in-out;
}

/* END CAL SECTION HERE  */


/* START CALBTN SECTION HERE  */
.scroll-btn
{
    width: 42px ;
    height: 45px ;
    position: fixed;
    left: 30px;
    top: 200px ;
    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    opacity:1;
    transition: all 0.3s ease-in-out;
}
.scroll-btn a
{
    text-decoration: none;
    color: var(--white-color) !important;
    font-size: 27px;

}


.scroll-btn:hover
{
    background-color: var(--color);

}

.scroll-btn a:hover  
{
    color: var(--background-color) !important;
}
.show-bb
{
    top: 50px !important;
    opacity: 1 !important;
}



/* END CALBTN SECTION HERE  */


/* START ALERT__ERORR SECTION HERE  */

.alert__erorr
{
    width: 100%;
    height: 70px;
    background-color: var(--error-background);    
    position: fixed;
    top: -100%;
    left: 0px;
    font-family: var(--font-site);
    z-index:  2300000;
    transition: all 0.8s ease-in-out;
}
.alert__erorr.active 
{
    top: 0% !important;
}

.alert__erorr  .alert__erorr__close
{
    text-align: right;
    margin: 10px;
    cursor: pointer;
}

.alert__erorr .container
{
    display: flex;
    /* align-items: center; */
    justify-content: center;
}




/* START SMALL SCREEN  HERE */
@media(max-width:540px)
{
    .alert__erorr__content p 
    {
        color: var(--color);
    }

}


/* END SMALL SCREEN HERE  */






/* END ALERT__ERORR SECTION HERE */



/* START FOOOD SECTION HERE  */
.food
{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0px;
    bottom: 0px;
    top: 100%;
    right: 0px;
    background-color: var(--color);
    color: var(--background-color);
     z-index: 2000000;
    font-family: var(--font-site);
    transition: all 0.8s ease-in-out;

}


.food.active 
{
    top:0px!important;
}



.food .food__close
{
    margin: 20px;
    text-align: right;
    font-size: 23px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.food .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.food .lists 
{
    list-style: none;
    transition: all 0.5s ease-in-out;
    text-align: center;
}


.food .lists li 
{
    display: inline-block;
    padding: 10px 25px;
   
}



.food .lists li button
{
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    border: none; 
    outline: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;

}

.food .lists li button:hover
{
    background-color: var(--color);
    color: var(--background-color);
}




.food .food__content
{
    margin: 30px 0px;
    text-align: center;
}


.food .food__content__images
 {
        max-width: 100%;
        margin: 20px 0px;
        
        transition: all 0.5s ease-in-out;
 }

 .food .food__content__images img
 {
    max-width: 320px;
     border: 3px solid #FFF;
     border-radius: 15px;
     padding: 4px;
     /* box-shadow: 5px 10px 8px #888888; */
 }

 .food .food__content__btn 
 {
    margin: 30px 0px;
    text-decoration: none;
    /* font-size: 23px; */
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    border: none; 
    outline: none;
   
    transition: all 0.5s ease-in-out;

 }



  .food .food__content__btn:hover 
  {
    background-color: var(--color);
    color: var(--background-color);
  }


  /* START SMALL SCREENS HERE  */
  @media(max-width:540px)
  {
    .food__close
    {
        margin: 20px  !important;
    }

  
    .food .food__content
    {
        margin: 0px 0px !important;
    }

    .food__content__images 
    {
        margin: 10px 0px !important;
    }
    .food__content__images img 
    {
        max-width: 200px !important;
    }

    .food__content__btn 
    {
        margin: 15px 0px !important;
    }



  }





  /* END SMALL SCREENS HERE  */

/* END FOOD SECTION HERE  */


/* START FOOD BTN SECTION HERE  */
.food-btn
{
    width: 42px ;
    height: 45px ;
    position: fixed;
    /* left: 30px;
    top: 140px ; */

     /* left: 30px;    original */
     left: 30px;
     /* left: 100%; */
    top: 270px ;

    /* 
         left: 30px;
        top: 270px ;
    
    */


    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    opacity:1;
    transition: all 0.3s ease-in-out;
}
.food-btn a
{
    text-decoration: none;
    color: var(--white-color) !important;
    font-size: 27px;

}


.food-btn:hover
{
    background-color: var(--color);

}

.food-btn a:hover  
{
    color: var(--background-color) !important;
}
.food-show-bb
{
    top: 30px !important;
    opacity: 1 !important;
}



/* END FOOD BTN SECTION HERE  */




















/* START COOKBOOK btn  SECTION HERE  */
.cookbook-btn 
{
      width: 42px ;
    height: 45px ;
    position: fixed;
    /* left: 30px;
    top: 140px ; */

     /* left: 30px;    original */
     left: 30px;
     /* left: 100%; */
    top: 130px ;

    /* 
         left: 30px;
        top: 270px ;
    
    */


    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    opacity:1;
    transition: all 0.3s ease-in-out;
}



.cookbook-btn a
{
     text-decoration: none;
    color: var(--white-color) !important;
    font-size: 27px;
}


.cookbook-btn:hover 
{
     background-color: var(--color);
     color: var(--background-color);   
}
/* END COOKBOOK btn SECTION HERE  */






/* START COOKBOOK SECTION HERE  */

.cookbook
{
      width: 100%;
    height: 100vh;
    position: fixed;
    left: 0px;
    bottom: 0px;
    top: 0px;
    right: 0px;
    background-color: var(--color);
    color: var(--background-color);
     z-index: 2000000;
    font-family: var(--font-site);
    transition: all 0.8s ease-in-out;
    text-align: center;
    transform: translateX(-200%);
}



.cookbook.active 
{
    transform: translateX(0%);
}




.cookbook .cookbook__close
{

    margin: 20px;
    text-align: right;
    font-size: 23px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


.cookbook .container
{
    display: flex;
    justify-content: center;
}

.cookbook  .cookbook__content__images
{
    margin: 20px 0px;
}

.cookbook  .cookbook__content__images img 
{
    max-width: 250px;
    border: 3px solid var(--background-color);
    padding: 4px;
    border-radius: 15px;
}


.cookbook a

{
      padding: 10px 25px;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 10px;
    outline: none;
    border: none;
    margin: 10px 0px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}


.cookbook a:hover
{
    color: var(--background-color);
    background-color: var(--color);
}






/* END COOKBOOK SECTION HERE  */




/* START LANG-BTN SECTION HERE  */
.lang-btn
{
       width: 42px ;
    height: 45px ;
    position: fixed;
    left: 30px;
    top: 270px ;
    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
  
    opacity:1;
    transition: all 0.3s ease-in-out;

}

.lang-btn a 
{
      text-decoration: none;
    color: inherit;
    background-color: inherit;
    font-size: 24px;    
}

.lang-btn:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}



/* END LANG-BTN SECTION HERE  */




/*  START LANG__CONTENT SECTION HERE   */
.lang__content 
{
      position: fixed;
      right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;  
    width: 100%;
    height: 100vh;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    z-index: 2000000;
    overflow-y: auto;
    text-align: center;
    padding: 6px;   
    transform: translateY(-100%);
     transition: all 0.8s ease-in-out;
}

.lang__content.active 
{
    transform: translateY(0%);
}




.lang__content .lang__content__close
{
    text-align: right;
    margin: 15px;
    font-size: 23px;
    cursor: pointer;
}

.lang__content .container
{
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang__content img 
{
    max-width: 150px;
    border-radius: 15px ;
    border: 3px solid var(--background-color);
    padding: 4px;
}



.lang__content__flag__en , .lang__content__flag__ar , 
.lang__content__flag__sp 
{
    margin: 15px 0px;
}


/* SMALL SCREEN HERE  */

@media(max-width:540px)
{
    .lang__content .container
    {
        justify-content: flex-start !important;
    }
}


/* END SMALL SCREEN  */

/* END LANG__CONTENT SECTION HERE  */