header .searchbar {
    display: none;
}

header {
    background-image: unset;
    box-shadow: none;
}

main {
    background-image: url(../images/background0.webp);
}

.soov {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.soov-title {
    text-align: center;
}

.soov-title h1 {
    font-size: 96px;
    margin: 0;
}

.soov-title h2 {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
}

.soov-title h3 {
    font-size: 20px;
}

.soov .btn {
    text-decoration: none;
    margin: 20px 0;
}

.soov button {
    background-color: var(--color-primary);
    color: var(--color-text);
    border: none;
    width: 200px;
    height: 60px;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--color-primary-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.soov button span {
    font-size: 24px;
    font-weight: 600;
}

.soov button:hover {
    background-color: var(--color-primary-active);
    box-shadow: 0 0 30px var(--color-primary-shadow);
}

.features {
    display: grid; /* 2x2 grid */
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    margin: 20px 0;
}

.feature {
    display: flex;
    flex-direction: row;
    max-width: 200px;
    gap: 5px;
}

.feature p {
    margin: 0;
}

.feature i {
    transform: translateY(5px)
}

.soov > p {
    max-width: 600px;
    text-align: center;
}

@media (max-width: 800px) {
    .soov-title h1 {
        font-size: 48px;
    }

    .soov-title h2 {
        font-size: 24px;
    }

    .soov-title h3 {
        font-size: 16px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .feature {
        max-width: none;
    }

    .soov > p {
        width: 90%;
    }
}