*{
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
}

html{
    scroll-behavior: smooth;
}

html body{
    overflow-x: hidden;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(images/banner.png);
    background-position: center;
    background-size: cover;
    position: relative;
    transition: 0.5s;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 250px;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 25px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 4px;
    background: #570288;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: white;
}

.text-box a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding:  12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1s;
}

.hero-btn:hover{
    border: 1px solid #570288;
    background: #570288;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width: 840px){
    .text-box h1{
        font-size: 40px;
    }

    .text-box p{
        font-size: 20px;
    }

    .nav-links ul li{
        display: block;
    }

    .nav-links ul{
        padding: 20px; 
    }

    .nav-links{
        position: fixed;
        background-color: #570288;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: center;
        z-index: 4;
        transition: 0.5s;
        box-shadow: 0 0 20px 0 rgb(0, 0, 0, 1);
    }
    
    nav .fa{
        display: block;
        color:white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        position: fixed;
        text-align: center;
    }

    nav .fa.fa-bars{
        right:35px;
        top: 45px;
        filter: drop-shadow(0px 0px 5px #000000);
        z-index: 3;
    }
}

/* Features */

.features{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1{
    font-size: 50px;
    font-weight: 700;
}

h3{
    color: white;
    font-size: 25px;
    font-weight: 600;
    margin: 10px 0;
}

p{
    color: white;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    padding-bottom: 40px;
    font-weight: 500;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.features-col{
    flex-basis: 31%;
    background: #570288;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.features-col img{
    width: 100%;
    border-radius: 10px;
}

.features-col:hover{
    box-shadow: 0 0 20px 0 rgb(0, 0, 0, 1);
}

.features-col li{
    color: white;
    list-style: none;
    /* display: inline-block; */
    text-align: left;
    padding: 8px 25px;
    position: relative;
    font-size: 16px;
}

@media(max-width: 840px){
    .row{
        flex-direction: column;
    }
}

/* Gallery */

.gallery{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.gallery-col img{
    width: 100%;
    height: 100%;
}

.gallery-col{
    width: 50%;
    border-radius: 10px;
    margin: auto;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;
}

.gallery-col:hover{
    box-shadow: 0 0 20px 0 rgb(0, 0, 0, 1);
}


.gallery .row{
    flex-direction: column;
}


@media(max-width: 840px){
    .gallery-col{
        width: 100%;
    }
}


/* Wishlist */

.wishlist{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(images/banner.png);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
    transition: 0.5s;
}

.wishlist p{
    margin-bottom: 20px;
    font-size: 25px;
}

.wishlist h1{
    color: white;
}

.wishlist .hero-btn{
    font-size: 40px;
    font-weight: 700;
}

.wishlist:hover{
    box-shadow: 0 0 20px 0 rgb(0, 0, 0, 1);
}