@font-face {
 font-family: "TradeGothic LT";
 src: url(font-family/Trade_Gothic_Font/Trade_Gothic_LT.ttf);
}

@font-face {
 font-family: "Century Gothic";
 src: url(font-family/CenturyGothic.ttf);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Century Gothic', sans-serif;
}

:root{
    --first-color: #FF0000 ;
    --second-color: #ff3232;
    --third-color: #CD1818;
    --fourth-color: #ED2B2A;
    --background-color: #1A1A1A;
    --first-font: 'Inter';
}

body{
    background: black;
}






/* ********* NavBar ******** */

nav{
    background: black;
    width: 100%;
    max-width: 100vw;
    height: 7rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    box-shadow: 0 0 3px #FF0033, 
    0 0 6px #FF0033,
    0 0 15px #FF0033;
}
.nav__container{
    width: 95%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
.nav__container .logo_container{
    flex: 0.33;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav__container .img{
    width: clamp(55% + 0.3rem, 40% + 0.1rem, 60% + 0.3rem);
    object-fit: cover;
}

.nav__menu{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    gap: 4rem;
    flex: 0.33;
}
nav .nav__menu a{
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}
.nav__menu li a:hover{
    color: grey;
}

.nav__container .container_infos{
    flex: 0.33;
    display: flex;
    justify-content: flex-end;
}
.nav__container .infos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.nav__container .contact_us{
    border-radius: 40px;
    border: 2px var(--fourth-color) solid;
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 8px;
    background: transparent;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav__container .contact_us a{
    color: white;
}
.nav__container .contact_us:hover{
    background: var(--fourth-color);
}

nav p{
    color: white;
    font-weight: 600;
    top: 10%;
    right: 3.4%;
    font-size: 1rem;
}





/* ********* section1 ******** */



.section1{
    background: #1B263B;
    margin-top: 7rem;
    padding-bottom: 2rem;
}
.section1 h1{
    padding: 3rem 0;
    color: var(--first-color);
    font-family: var(--first-font), sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
}
.section1 .para1{
    color: white;
    font-size: 1.1rem;
    width: 80%;
    margin: 1rem auto;
    text-align: center;
    line-height: 1.8rem;
    font-weight: 400;
    padding-bottom: 2rem;
}


.section1 .container-images{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.section1 .container-images p{
    color: white;
    text-align: center;
    font-size: 1.1rem;
}
.section1 .container-images span{
    font-style: italic;
    font-size: 0.8rem;
}
.section1 .container-images img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.section1 .container-images .image{
    width: 100%;
    position: relative;
    transition: 0.1s ease;
    cursor: pointer;
    overflow: hidden;
}
.section1 .container-images .image:hover{
    transform: scale(1.025);
}
.section1 .container-images .play{
    position: absolute;
    width: 60px;
    height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}





/* ********* section2 ******** */

.section2{
    padding: 6rem 0;
    background: black;
}
.section2 h1{
    color: var(--first-color);
    font-family: var(--first-font), sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 3rem;
}

.section2 .container_gallery{
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    padding: 20px;
}
.section2 .container_gallery img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: 0.1s;
}
.section2 .container_gallery img:hover{
    transform: scale(1.05);
    border: 2px solid #FF0033;
}






/* ********* Footer ******** */



footer{
    max-width: 100vw;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: black;
    box-shadow: 0 0 3px #FF0033, 
    0 0 6px #FF0033,
    0 0 15px #FF0033;
}
footer h1{
    font-size: 1.5rem;
    color: white;
    padding-bottom: 1rem;
}
footer p, footer li{
    font-size: 0.9rem;
    font-weight: 700;
    color: darkgrey;
}
footer .article2{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
footer .article2 ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
}
footer .article2 ul li a i{
    font-size: 1.5rem;
    transition: 0.1s;
    color: darkgrey;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .article2 ul li a i:hover{
    transform: scale(1.15);
    color: var(--second-color);
    opacity: 0.8;
}
footer .article3 li{
    margin-bottom: 0.3rem;
}
footer .article3 li a{
    color: darkgrey;
}

footer .article3 li:hover{
    color: lightgrey;
    text-decoration: underline;
    cursor: pointer;
}









/********** Media Queries **********/


@media (max-width: 1150px){

    .nav__menu{
        gap: 2rem;
    }
    nav .nav__menu a{
        font-size: 1.2rem;
    }


    .nav__container .infos{
        gap: 0.5rem;
    }

    .nav__container .contact_us{
        width: 140px;
        height: 35px;
        border-radius: 40px;
        font-size: 1rem;
        padding: 2px;
    }
    nav p{
        font-size: 1rem;
    }






    footer{
        padding: 0.8rem 1.5rem;
    }
    footer h1{
        font-size: 1.2rem;
        padding-bottom: 0.8rem;
    }
    footer p, footer li{
        font-size: 0.8rem;
    }
    footer .article2{
        gap: 1rem;
    }
    footer .article2 ul{
        gap: 2rem;
    }
    footer .article2 ul li a i{
        font-size: 1.2rem;
    }
    footer .article3 li{
        margin-bottom: 0.3rem;
    }
}



@media (max-width: 1000px){
    .nav__menu{
        gap: 1.5rem;
    }
    nav .nav__menu a{
        font-size: 1.1rem;
    }


    .nav__container .infos{
        gap: 0.4rem;
    }

    .nav__container .contact_us{
        width: 130px;
        height: 30px;
        border-radius: 30px;
        font-size: 0.9rem;
        padding: 2px;
    }
    nav p{
        font-size: 0.9rem;
    }

   
}



@media (max-width: 800px){
    .nav__menu{
        gap: 1rem;
    }
    nav .nav__menu a{
        font-size: 1rem;
    }


    .nav__container .infos{
        gap: 0.3rem;
    }

    .nav__container .contact_us{
        width: 110px;
        height: 25px;
        border-radius: 20px;
        font-size: 0.8rem;
        padding: 2px;
    }
    nav p{
        font-size: 0.8rem;
    }


  



    footer{
        padding: 0.6rem 1rem;
    }
    footer h1{
        font-size: 1rem;
        padding-bottom: 0.7rem;
    }
    footer p, footer li{
        font-size: 0.7rem;
    }
    footer .article2{
        gap: 1rem;
    }
    footer .article2 ul{
        gap: 1rem;
    }
    footer .article2 ul li a i{
        font-size: 1.1rem;
    }
    footer .article3 li{
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 700px){
    nav{
        height: 5.5rem;
    }
    .nav__menu{
        gap: 1rem;
    }
    nav .nav__menu a{
        font-size: 0.8rem;
    }
    




    footer{
        padding: 0.6rem 1rem;
    }
    footer h1{
        font-size: 0.9rem;
        padding-bottom: 0.6rem;
    }
    footer p, footer li{
        font-size: 0.6rem;
    }
    footer .article2{
        gap: 1rem;
    }
    footer .article2 ul{
        gap: 1rem;
    }
    footer .article2 ul li a i{
        font-size: 1.1rem;
    }
    footer .article3 li{
        margin-bottom: 0.3rem;
    }
}



@media (max-width: 600px){
    nav{
        height: 5rem;
    }
    .nav__menu{
        gap: 1rem;
    }
    nav .nav__menu a{
        font-size: 0.7rem;
    }


    .nav__container .infos{
        gap: 0.2rem;
    }

    .nav__container .contact_us{
        width: 100px;
        height: 20px;
        border-radius: 20px;
        font-size: 0.6rem;
        padding: 2px;
    }
    nav p{
        font-size: 0.6rem;
    }

    .section1 h1{
        padding: 2rem 0;
        font-size: 2.2rem;
        font-weight: 600;
    }

    .section1 .para1{
        font-size: 1rem;
        width: 90%;
        margin: 1rem auto;
        line-height: 1.6rem;
        font-weight: 400;
        padding-bottom: 4rem;
    }

    .section1 .container-images{
        width: 95%;
    }
    .section1 .container-images p{
        font-size: 0.9rem;
    }
    .section1 .container-images p span{
        font-size: 0.6rem;
    }

}




@media (max-width: 550px){
    nav{
        height: 4rem;
    }
    .nav__menu{
        gap: 0.8rem;
    }
    nav .nav__menu a{
        font-size: 0.6rem;
    }


    .nav__container .infos{
        gap: 0.18rem;
    }

    .nav__container .contact_us{
        width: 80px;
        height: 16px;
        border-radius: 10px;
        font-size: 0.5rem;
        padding: 1.5px;
    }
    nav p{
        font-size: 0.5rem;
    }
   





    footer{
        padding: 0.6rem 0.8rem;
    }
    footer h1{
        font-size: 0.8rem;
        padding-bottom: 0.6rem;
    }
    footer p, footer li{
        font-size: 0.5rem;
    }
    footer .article2{
        gap: 1rem;
    }
    footer .article2 ul{
        gap: 1rem;
    }
    footer .article2 ul li a i{
        font-size: 0.8rem;
    }
    footer .article3 li{
        margin-bottom: 0.3rem;
    }
}



@media (max-width: 500px){

   

}

@media (max-width: 450px){
    nav{
        height: 3.5rem;
    }
    .nav__menu{
        gap: 0.25rem;
    }
    nav .nav__menu a{
        font-size: 0.4rem;
    }


    .nav__container .infos{
        gap: 0.16rem;
    }

    .nav__container .contact_us{
        width: 70px;
        height: 14px;
        border-radius: 10px;
        font-size: 0.4rem;
        padding: 1.45px;
    }
    nav p{
        font-size: 0.4rem;
    }

   

    .section1 h1{
        padding: 2rem 0;
        font-size: 1.8rem;
        font-weight: 600;
    }

    .section1 .para1{
        font-size: 0.8rem;
        width: 95%;
        margin: 1rem auto;
        line-height: 1.6rem;
        font-weight: 400;
        padding-bottom: 4rem;
    }

    .section1 .container-images{
        width: 96%;
    }
    .section1 .container-images p{
        font-size: 0.8rem;
    }
    .section1 .container-images p span{
        font-size: 0.6rem;
    }


        footer{
        padding: 0.6rem 0.8rem;
        }
        footer h1{
            font-size: 0.6rem;
            padding-bottom: 0.4rem;
        }
        footer p, footer li{
            font-size: 0.4rem;
        }
        footer .article2{
            gap: 0.8rem;
        }
        footer .article2 ul{
            gap: 0.8rem;
        }
        footer .article2 ul li a i{
            font-size: 0.5rem;
        }
        footer .article3 li{
            margin-bottom: 0.3rem;
        }
}
    
@media (max-width: 350px){
    nav{
        height: 3.5rem;
    }
    .nav__menu{
        gap: 0.35rem;
    }
    nav .nav__menu a{
        font-size: 0.4rem;
    }


    .nav__container .infos{
        gap: 0.16rem;
    }

    .nav__container .contact_us{
        width: 60px;
        height: 13px;
        border-radius: 10px;
        font-size: 0.37rem;
    }
    nav p{
        font-size: 0.35rem;
    }
    .nav__container .logo_container{
        display: none;
    }




    .section2 .container_gallery{
        width: 100%;
        padding: 0;
    }

   


        footer{
            padding: 0.6rem 0.1rem;
        }
        footer h1{
            font-size: 0.5rem;
            padding-bottom: 0.4rem;
        }
        footer p, footer li{
            font-size: 0.35rem;
        }
        footer .article2{
            gap: 0.5rem;
        }
        footer .article2 ul{
            gap: 0.5rem;
        }
        footer .article2 ul li a i{
            font-size: 0.4rem;
        }
        footer .article3 li{
            margin-bottom: 0.3rem;
        }

}