
@font-face {
    font-family: "Tajawal";
    src: url(Tajawal/Tajawal-Regular.ttf);
}

:root{
    --main-color: #f8b281;
    --secondary-color: #1b1b1b;

}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body{
    height: 100%;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: wheat;
}

section{
    padding: 5%;
}

.link-menu{
    padding: 2%;
}

.Logo img{
    width: 5rem;
    height: 5rem;
}
h2{
    font-size: 2.5rem;
    line-height: 125%;
    padding: 1rem 0;
}
h3{
    font-size: 1.25rem;
    line-height: 125%;
}

.header{
    position: absolute;
    height: 15vh;
    background-color: white;
    width: 120%;
    left: 0;
    top: 0;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
}

.navigation{
    display: none;
}
.hamburger{
    margin-top: .6rem;
    margin-right: .75rem;
    z-index: 10;
}


.links{
    position: absolute;
    background-color: var(--main-color);
    width: 100%;
    height: 100vh;
    left :0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    color: black;
    transform: translateX(100%);

}

.links a{
    color: var(--secondary-color);
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: underline;
}

.links a:hover{
    color: white;
}


.home-page{
    min-height: 100vh;
    overflow: hidden;
    
}

.intro{
    margin-top: 15vh;
    color: white;
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.854);
    text-align: center;
}

.intro h2{
    margin-top: 28vh;
}


#commander{
    margin-left: 10rem ;
}
.btn-menu a{
    color:white;
}


 

button a {
    color: #1b1b1b;
}

.buttons{
    margin-bottom: 1rem;
}
.main-pic {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.content {
    
    font-family: "Tajawal";
}

.content h2{
    font-size: 1.65rem;
    color: gray;
}

.content p{
    font-size: 1.20rem;
    font-weight: 600;
}

.title{
    color: gray;
}

.email {
    color: rgba(218, 57, 57, 0.998);
}

.arrow img{
    margin-left: 17rem;
    margin-top: 1rem;
    height: 4rem;
}

.footer{
    width: 100%;
    font-family: 'Tajawal';
    
    background-color: 	#DEB887;
    text-align: center;
    margin-top: 2rem;
}
.mentions{
    font-size: 1.55rem;
    color: 	#8B0000;
    font-weight: 600;

}

#signature{
    font-size: 1.5rem ;
   
}

@media screen and (min-width : 768px){
    body{
        overflow-y: scroll;
    }
   
    .hamburger{
        display: none;
    }
    
    a{
        text-decoration: none;
    }
    button a:hover{
        color:white;
    }
    html,body {
        width: 100%;
    }

    nav{
        display: flex;
        align-items: center;
    }

    
    .navigation{
        display: flex;
        margin-right: 25.5rem;
        
        
     }


     .navigation a {
        
        color: white;
        padding: 2rem;
        
        font-size: 1.3rem;
        font-weight: 800;
        
     }

     .navigation a:hover{
        color : black;
     }

     .m-item{
        margin-left: 5rem;
     }

     .arrow{
       
        margin-left: 45rem;
     }
 
     .arrow a img:hover{
         transform: translateY(-2rem);
     }
 

     .footer{
        height: 15vh;
        bottom: 0;
        align-items: center;
        display: flex;
        padding: 1rem;
        padding-left: 4rem;
     }

     .mentions{
        margin-left: 20rem;
     }


}