/* Fonts Used */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&family=Rubik&display=swap');


/* All */

*{
    margin: 0;
    padding: 0;
}

/* Container Main */

.container{
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
    /* justify-content: space-between; */
}

.container::before{
    content: '';
    background-image: url(../images/bg.jpg);
    background-position: top; 
    background-repeat: no-repeat; 
    background-size: cover;
    position: absolute;
    z-index: -1;
    height: 100vh;
    width: 100vw;
    overflow-y: hidden;
}

/* Navigation Section */

.nav{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2B2922;
    padding: 20px 100px;
}

.logo{
    flex-grow: 2;
    color: white;
}

.menu{
    display: flex;
    flex-grow: 1;
}


.list{
    display: flex;
    flex-grow: 2;
    justify-content: center;
    align-items: center;
}

.list-item{
    list-style: none;
    margin: 0 30px;
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    color: rgba(128, 128, 128, 0.822);
}

.list-item:hover{
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
}

.btn{
    flex-grow: 1;
    background-color: #2B2922;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    color: #A08F36;
    border-color: #A08F36;
    border-style: solid;
    font-family: 'Rubik', sans-serif;
}

.btn:hover{
    cursor: pointer;
    color: #ffffff;
    border-color: #ffffff;
}


/* Intro Section */

.intro{
    display: flex;
    padding-left: 100px;
    background-color: #2B2922;
    padding-top: 30px;
    padding-bottom: 40px;
    justify-content: center;
    align-items: center;
}

.heading{
    flex-grow: 3;
    font-size: 70px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.para{
    flex-grow: 1;
    color: #c0c0c0;
    font-size: 25px;
    font-family: 'Rubik', sans-serif;
}

/* Footer Section */

.footer{
    display: flex;
    justify-content: right;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #2B2922;
    width: 100vw;
}

.left{
    font-size: 40px;
    border: 3px solid #A08F36;
    border-radius: 50px;
    padding: 1px 14px;
    color: #A08F36;;
}

.right{
    font-size: 40px;
    border: 3px solid #ffffff;
    border-radius: 50px;
    padding: 1px 14px;
    color: #ffffff;
}

.left-box{
    background-color: #39372D;
    padding: 10px 30px;
}

.right-box{
    background-color: #A08F36;
    padding: 10px 30px;
}

.left-box:hover{
    cursor: pointer;
    font-weight: bold;
}

.right-box:hover{
    cursor: pointer;
    font-weight: bold;
}

/* Mobile Responsiveness */

@media (max-width: 850px){

    .nav{
        flex-direction: column;
        
    }

    .menu{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .list{
        margin: 20px 0;
    }

    .logo img{
        height: 3em;
    }

    .list-item{
        font-size: 1em;
        margin: 0 1em;
    }

    .btn{
        font-size: 1em;
        width: 200px;
    }

    .intro{
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .heading{
        font-size: 2em;
    }

    .para{
        margin-top: 30px;
        font-size: 1em;
    }

    .left{
        font-size: 20px;
        border: 3px solid #A08F36;
        border-radius: 50px;
        padding: 1px 7px;
        color: #A08F36;;
    }
    
    .right{
        font-size: 20px;
        border: 3px solid #ffffff;
        border-radius: 50px;
        padding: 1px 7px;
        color: #ffffff;
    }

}


@media (max-width: 450px){


    .logo img{
        height: 2em;
    }

    .list-item{
        font-size: 0.8em;
        margin: 0 0.8em;
    }

    .btn{
        font-size: 0.8em;
        width: 100px;
    }


    .heading{
        font-size: 1.5em;
    }

    .para{
        font-size: 0.8em;
    }


}