.hero-image {
    height: 30vh !important;
}

.search-container {
    width: 990px;
    margin: 0 auto;
}

.search-container h3 {
    text-align: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #0c0c0c;
    margin-top: 100px;
    text-align: center;
}

.hero-text p {
    font-size: 1.8rem;
    color: #0c0c0c;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

/* Algemene styling voor centrering */
.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    text-align: center;
}

/* Zoekbalk styling */
.search-box {
    display: flex;
    border: 2px solid #333;
    border-radius: 50px;
    overflow: hidden;
    width: 60%;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    font-size: 16px;
}

/* Zoekknop styling */
.search-box button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    font-size: 16px;
}

/* mobile */
@media screen and (max-width: 600px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.5rem;
    }

    .search-box {
        width: 80%;
    }

    .search-box input {
        font-size: 14px;
    }
    
    .search-container {
        width: 100%;
    }

    .result-text h2 {
        font-size: 1.5rem;
        text-align: center;
    }
}