@import url('https://fonts.googleapis.com/css2?family=Kameron:wght@400;700&display=swap');
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Kameron', serif;
}
html{
    scroll-behavior: smooth;
}
:root{
    --theme-color:#f7a901;
}
section{
    height: 100vh;
    width: 100%;
}
.header{
    background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url("../images/intro.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/*-------------------- Navbar -------------------*/

nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 50px;
    align-items: baseline;
}
.btn-show{
    display: none;
    width: 30px;
    height: 30px;
    background-color:var(--theme-color) ;
    color: white;
    padding: 5px;
    outline: none;
    border: none;
    flex-direction: column;
    justify-content: space-evenly;
}
.btn-show .bar{
    height: 2px;
    width: 100%;
    background-color: white;
}

/*--------------------- Logo ----------------------*/

.header nav .logo{
    text-transform: uppercase;
    color: white;
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 1px;
}
.header nav .logo span{
    font-weight: 700;
    color: var(--theme-color);
}

/*----------------------- Navbar Menus ------------------*/

.header .navbar ul{
    display: flex;
    list-style: none;
}    
.header .navbar ul li{
    padding: 10px 30px;
}
.header .navbar ul li a{
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: 0.3s;
}
.header .navbar ul li:hover a{
    color: var(--theme-color);
}
.header .navbar ul li.link-btn:hover{
    background: white;
    color: var(--theme-color);
}

/*----------------------- Banner ------------------*/

.header .banner{
    color: white;
    position: absolute;
    left: 0;
    top: 150px;
    padding-left: 50px;
}
.header .banner h1{
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 400;
}
.header .banner h1 span{
    font-weight: 700;
    color: var(--theme-color);
}
.header .banner p{
   margin: 30px 0; 
}

/*----------------------- Link Button ------------------*/

.link-btn{
    background-color: var(--theme-color);
    color: white;
    padding: 5px 20px;
    border-radius: 3px;
    text-decoration: none;
    transition: 0.5s;
}

/*----------------------- services ------------------*/

.header .services{
    position: absolute;
    background-color: white;
    left: 0;
    bottom: 0;
    width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.header .services .service{
    padding: 20px;
}
.header .services .service h3{
    font-size: 16px;
    font-weight: 700;
    margin: 15px 0;
}
.header .services .service p{
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    margin: 15px 0;
}
.header .services .service a{
    color:rgb(63, 70, 77);
    font-size: 14px;
    font-weight: 700;
}
.header .services .service:nth-child(1){
    background-color:rgb(99, 99, 99);
}
.header .services .service:nth-child(2){
    background-color:silver;
}
.header .services .service:nth-child(3){
    background-color:rgb(255, 255, 255);
}
.header .services .service:nth-child(1) h3,
.header .services .service:nth-child(1) a{
    color: white;
}
.header .services .service:nth-child(1) p{
    color:rgb(223, 223, 223);
}

/*----------------------- Project ------------------*/

.project{
    background-color: rgb(240, 243, 243);
}
.project .row{
    width: 90%;
    margin: auto;
    display: flex;
}
.project .col{
    width: 50vw;
    height: 100vh;
    padding: 100px;
}
.project .col h3{
    font-size: 30px;
    font-weight: 700;
    margin: 30px 0;
    color: var(--theme-color);
}
.project .col p{
    margin-bottom: 30px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.6);
}
.project .col-2{
    position: relative;
}
.project .box-1{
    position: absolute;
    background-color: var(--theme-color);
    width: 30%;
    height: 30%;
    top: 50px;
    right: 30px;
    box-shadow: rgba(0, 0, 0, 0.6) 1.95px 1.95px 2.6px;
}
.project .box-2{
    position: absolute;
    background-color:blanchedalmond;
    width: 60%;
    height: 30%;
    bottom: 0;
    left: 0;
    top: 400px;
}
.project .img-box{
    position: absolute;
    background-image: url("../images/intro -2.jpg");
    background-size: cover;
    width: 50%;
    height: 50%;
    left: 200px;
    top: 150px;
    box-shadow: rgba(0, 0, 0, 0.6) 1.95px 1.95px 2.6px;
}
.top{
    position: fixed;
    bottom: 0;
    right: 10px;
    padding: 15px;
    background-color:#f18930;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    box-shadow: rgba(50, 50, 93, 0.23) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    display: none;
}
.top.active{
    display: block;
}
.top a{
    color: white;
    text-decoration: none;
}
.trend{
    background-color: var(--theme-color);
    color: white;
}
.trend .row {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.trend .img-box{
    width: 600px;
    height: 300px;
    margin: 30px 0;
}
.trend .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trend p{
    padding: 15px;
    margin: 15px 0;
    line-height: 30px;
}
.trend h3{
    font-size: 30px;
    font-weight: 700;
    margin: 30px 0;
    padding-top: 50px;
}
.feature .row{
    width: 90%;
    margin: auto;
}
.feature h3{
    font-size: 30px;
    font-weight: 700;
    margin: 10px 10px;
    padding-top: 30px;
    text-align: center;
}
.feature h1{
    font-size: 80px;
    font-weight: 700;
    margin: 30px 0;
    color: var(--theme-color);
    padding-top: 30px;
    text-align: center;
}
.feature .row p{
    margin: 30px 10px;
    line-height: 30px;  
    color: rgba(0, 0, 0, 0.6);
}
.feature .row .boxs{
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr;
    gap: 20px;
}
.feature .row .box{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.feature .row .box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact .row{
    display: flex;
    width: 90%;
    margin: auto;
}
.contact .col{
    padding: 100px;
    width: 50vw;
    height: 100vh;
}
.contact .col img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.contact h3{
    font-size: 30px;
    font-weight: 700;
    margin: 30px 0;
    color: var(--theme-color);
    text-transform: uppercase;
    border-bottom: 1px solid rgb(235, 232, 232);
}

.form{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.form .form-group{
    display: flex;
    flex-direction: column;
}
.form .form-group label{
    margin: 10px 0px;
    color: var(--theme-color);
    font-weight: 500;
}

.form .form-group input{
    height: 40px;
    padding: 10px;
    border: 1px solid #cccccc;
    outline: none;
}
.form .form-group textarea{
    margin-bottom: 10px;
    height: 100px;
    border: 1px solid #ccc;
    resize: none;
    outline: none;
    padding: 10px;
}
.form .form-group input:focus,
.form .form-group textarea:focus{
    border: 1px solid var(--theme-color);
}
.form .form-group .btn-message {
    align-self: flex-start;
    width: 150px;
    height: 40px;
    background-color: var(--theme-color);
    color: #fff;
    border: none;
    transition: 0.5s;
}
.form .form-group .btn-message:hover{
    background-color: #ecb009;
}
.design{
    text-align:center;
    padding: 100px;
}
.design a{
    text-decoration: none;
    color: var(--theme-color);
    font-weight: 400;
}
.show{
    display: block !important;
}  

footer{
    background: #343434;
    padding-top: 50px;
}
.container{
    width: 1140px;
    margin: auto;
    display: flex;
    justify-content: center;
}
.footer-content{
    width: 33.3%;
    color: #fff;
}
.footer-content h3{
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--theme-color);
}
.footer-content p{
    width:190px;
    margin: auto;
    padding: 7px;
}
.footer-content ul{
    text-align: center;
}
.list{
    padding: 0;
}
.list li{
    width: auto;
    text-align: center;
    list-style-type:none;
    padding: 7px;
    position: relative;
}
.list li::before{
    content: '';
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: #f18930;
    transition-duration: .5s;
}
.list li:hover::before{
    width: 70px;
}
.social-icons{
    text-align: center;
    padding: 0;
}
.social-icons li{
    display: inline-block;
    text-align: center;
    padding: 5px;
}
.social-icons i{
    color: white;
    font-size: 25px;
}
.list li a{
    text-decoration: none;
    color: #fff;
}
a:hover{
    color: var(--theme-color);
}
.social-icons i:hover{
    color: var(--theme-color);
}
.bottom-bar{
    background: var(--theme-color);;
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
}
.bottom-bar p{
    color: #343434;
    margin: 0;
    font-size: 16px;
    padding: 7px;
}    

/* Media Queries */

@media (max-width:600px){
    .header nav .logo{
        font-size: 18px;
    }
    .header .navbar{
        display: none;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        position: absolute;
        width: 50%;
        top: 7%;
        left: 50%;
        z-index: 1;
    }
    .header .navbar ul{
        flex-direction: column;
    }
    .header .navbar ul li:hover{
        background-color: rgba(255, 255, 255, 0.2);
    }
    .banner{
        width: 100%;
    }
    .header .banner h1{
        font-size: 30px;
    }
    .header .banner p{
        font-size: 15px;
    }
    .header .banner .link-btn{
        font-size: 15px;
    }
    .header .service {
        width: 100%;
        grid-template-columns: 1fr;
    }
    #hide{
        display: none;
    }
    .btn-show{
        display: flex;
    }

    /********  project  ************/

    .project .row{
        flex-direction: column;
    }
    .project .col{
        padding: 0%;
        width: 100%;
        height: 360px;
    }
    .project .col h3{
        font-size: 20px;
    }
    .project .box-1,
    .project .box-2{
        display: none;
    }
    .project .img-box{
        width: 100%;
        height: 200px;
        top: 50px;
        left: 0%;
    }
    .project p{
        font-size: 10px;
    }

    /******  trend  ******/

    .trend h3{
        font-size: 25px;
        margin: 5px 0;
        line-height: 5px;
    }
    .trend .img-box{
        margin: 20px 10px;
        width: 85%;
        height: 300px;
    }
     .trend p{
        font-size: 12px;
    }

    /******* feature *******/

    .feature{
        height: auto;
    }
    .feature h3{
        font-size: 20px;
        margin: 5px 0;
    }    
    .feature h1{
        font-size: 40px;
        margin: 10px 0;
    }
    .feature .row .boxs{
        grid-template-columns: 1fr 1fr;
    }

    /************ contact **************/

    .contact .row{
        flex-direction: column;
    }
    .contact .col{
        width: 100%;
        height: 50vh;
        padding: 30px;
    }
    .contact .col .form{
        height: 100px;
        padding-bottom: 40px;
    }

    /************ footer **************/
    
    footer{
        display: none;
    }
}