* {
    outline: none;
    box-shadow: none;
    font-size: 14px;
}

section {
    padding: 20px 0;
}

#logo img {
    max-width: 200px;
}

.signup-btn {
    text-decoration: none;
    color: #353535;
    padding: .3rem .7rem;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.signup-btn:hover {
    background-color: #f7f7f7;
    color: #353535;
}

#navbar .nav-link,
.offcanvas-body .nav-link,
#footer .nav-link {
    color: #353535;
    font-weight: 500;
}

#navbar .nav-link:hover,
.offcanvas-body .nav-link:hover,
#footer .nav-link:hover {
    color: blue;
}

#navbar .nav-link.active,
.offcanvas-body .nav-link.active #footer .nav-link.active {
    color: blue;
}

#searchForm {
    width: 300px;
    min-width: 200px;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#searchForm input {
    border-radius: 4px 0 0 4px;
}

#searchForm button {
    border-radius: 0 4px 4px 0;
}


/* Hero section */

#hero {
    margin-top: 100px;
    background-color: aliceblue;
    background: url(/imgs/banner_bg.jpg);
    min-height: 50vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.title-text {
    color: #262626;
    font-size: 2rem;
    font-weight: 400;
}

.title-text span {
    font-size: 2rem;
}

.login-box {
    max-width: 450px;
    margin: 80px auto;
    background: #fff;
    border-radius: 12px;
    padding: 30px 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-btn {
    background-color: #0b5fff;
    color: #fff;
    font-weight: 500;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
}

.login-btn:hover {
    background-color: #0751da;
    color: #fff;
}

.create-btn {
    background-color: oklch(.723 .219 149.579);
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    max-width: max-content;
    margin: 0 auto;
    display: block;
    padding: 8px;
}

.create-btn:hover {
    background-color: #0fb43e;
    color: #fff;
}

.forgot-text {
    font-size: 16px;
    margin-top: 20px;
}


/* Explore section */

.icon:nth-of-type(1) {
    background-color: oklch(74.421% 0.1376 223.089 / 0.233);
    border-radius: 8px;
    margin-bottom: 15px;
}

.icon.exp-2 {
    background-color: oklch(62.054% 0.25877 304.985 / 0.288);
}

.icon.exp-3 {
    background-color: oklch(59.814% 0.24201 1.009 / 0.164);
}

.icon.exp-5 {
    background-color: oklch(62.078% 0.20567 259.002 / 0.151);
}

.icon i {
    font-size: 2.5rem;
    padding: 10px;
}

.explore-btn {
    background-color: oklch(.715 .143 215.221);
    padding: .5rem 2.5rem;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.explore-btn:hover {
    color: #fff;
    background-color: oklch(63.991% 0.11534 218.665);
}


/* discover section */

#discover {
    position: relative;
    overflow: hidden;
    background: url('/imgs/background.jpg');
    background-size: cover;
    background-position: center;
}


/* overlay layer */

#discover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.075);
    /* opacity */
    backdrop-filter: blur(3px);
    /* optional blur */
    z-index: 1;
}


/* content should stay above the overlay */

#discover>* {
    position: relative;
    z-index: 2;
}

.dis-icon i {
    font-size: 2rem;
    padding: 15px;
    background-color: #0751da36;
    border-radius: 8px;
}

#discover .card {
    transition: 0.3s;
    cursor: pointer;
    background-color: #fff;
    min-height: 220px;
}

#discover .card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    background-color: #208ed3b0;
}

#connect-container {
    background: linear-gradient( to right, oklch(.623 .214 259.815), oklch(.789 .154 211.53));
    padding: 4rem 2.5rem;
    border-radius: 40px 10px 40px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.281);
}

#connect-container h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

#connect-container p {
    font-size: 16px;
    color: #f2f2f2;
}

#discover .card:hover>h4,
#discover .card:hover>p {
    color: #fff;
}

#discover .card:hover .dis-icon i {
    color: #fff;
    background-color: oklch(65.853% 0.12342 223.74);
}


/* Community section */

#community {
    background: url(/imgs/services-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f9f9f9;
}

.community-icon i {
    font-size: 2rem;
    padding: 15px;
    background-color: oklch(.715 .143 215.221);
    border-radius: 50%;
    color: #fff;
    font-weight: 300;
}

.community-img img {
    max-width: 500px;
}

.community-text h4 {
    font-size: 20px;
}

.community-text p {
    font-size: 14px;
    color: #363636;
}


/* App section */

#app {
    background: url(/imgs/shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f9f9f9;
}

.app-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.app-content p {
    font-size: 16px;
    color: #363636;
}

#footer {
    background: oklch(.985 .002 247.839);
    padding: 4rem 1rem;
    border-top: 1px solid #d5d5d5;
}

#footer .nav-link {
    font-weight: 500;
    color: #363636;
}

#footer .footer-text {
    margin-top: 20px;
    color: #363636;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    #hero {
        margin-top: 60px;
    }
    #logo img {
        max-width: 120px;
    }
    .login-box {
        margin: 40px auto;
    }
    .title-text {
        font-size: 1.5rem;
    }
    .title-text span {
        font-size: 1.5rem;
    }
    /* explore section */
    .icon i {
        font-size: 1.5rem;
        padding: 10px;
    }
    /* connect section */
    #connect-container {
        padding: 2rem 1rem;
    }
    #connect-container h4 {
        font-size: 20px;
    }
    #connect-container p {
        font-size: 14px;
        color: #f2f2f2;
    }
}

@media screen and (min-width: 768px) {
    .navbar-toggler {
        display: none;
    }
}