/*
Primary Color: Brand Blue #355ea8;
Secondary Colour: Font Colour #2e2e2e;
Secondary Colour: #ffffff;
Secondary Colour: Footer Colour #d7d7d7ff;
*/
html {
    height: -webkit-fill-available;
}
.container-fluid {
    padding-left: 0;
    padding-right: 0;
    position: relative;
}
.header-img {
    width: 100%;
    height: 80vh;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url("./images/dele-oke.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: color;
}

/*   HEADER  */
header {
    height: 60px;
    background-color: transparent;
    position: fixed !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255,0.2) 0%, rgba(255, 255, 255,1) 100%);
    box-shadow: 1px 1px 11px rgba(0, 0, 0, 0.3);
}
.logo {
    display: inline-block;
    width: 30%;
    cursor: pointer;
}
.nav-links {
    list-style: none;
    width: max-content;
}
.nav-links li {
    display: inline-block;
    margin: 5px;
    margin-top: 25px;
}
.nav-links li a {
    color: #2e2e2e;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    margin-right: 5px;
}
.nav-links li a.active {
    cursor: pointer;
    background-color: #355ea852;
    border-radius: 30px;
    padding: 10px 15px;
    
}
.nav-links li a:hover {
    background-color: #355ea852;
    border-radius: 30px;
    padding: 10px 15px;
}
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px,6px);
}
/*   END HEADER  */

/* Search Bar */
.search-bar {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 28%;
    width: 50%;
    height: 50px;
    border-radius: 30px;
}
.search-btn {
    position: absolute;
    top: 63%;
    left: 45%;
    width: 215px;
    border-radius: 30px;
    background-color: #355ea8;
    color: #fff;
}
/* End Search Bar */

/* Featured */
.featured {
    height: 500px;
}
.featured-img {
    width: 100%;
    height: 400px;
    border: 4px solid #000;
}
.discover-btn {
    width: 200px;
    border-radius: 30px;
    background-color: #355ea8;
    color: #fff;
}

/* Host*/
.host-img {
    width: 100%;
    height: 400px;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url("./images/christina-wocintechchat.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: color;
    background-attachment: fixed;
}
.host-title {
    width: 250px;
    margin-left: -35px;
    
}
.vv {
    background-color: rgba(255, 255, 255, 0.401);
    height: 90px;
    padding-left: 30px;
}
footer {
    background-color: #d7d7d7ff;
}
footer a {
    color: #2e2e2e;
}

@media screen and (max-width: 500px) {
    nav ul li.nav-title {
        display: none;
    }
    .logo {
        width: 50%;
    }
    .nav-links li {
        margin-right: 15px;
    }
    .header-img {
        height: 60vh;
    }  
    .search-bar {
        width: 90% !important;
        top: 40%;
        left: 8%;
        border-radius: 10px;
        font-size: small;
        text-align: center;
    }
    .search-btn {
        position: absolute;
        top: 55%;
        left: 36%;
        width: 140px;
    }
    .discover-btn  {
        width: 170px;
       border-radius: 10px;
    }
    .featured-img {
        width: 90%;
        height: 275px;
        border: 1px solid #000;
    }
    h2 {
        margin: 20px;
        font-weight: 400;
    }
    p {
        margin-bottom: 0.5rem;
    }
    .featured-container {
        margin: 20px 5px;
    }
    .featured.row {
        display: contents;
    }
    .vv {
        font-size: medium;
    }
}