/*====================================
Hero Section
====================================*/

.hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(rgba(11, 36, 71, 0.75), rgba(11, 36, 71, 0.75)),
        url("../images/hero.webp") center center/cover no-repeat;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 37px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size:15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 23px;
}

.hero-search {
    max-width: 750px;
    margin: 0 auto;
}

.hero-search .input-group {
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-search .form-control {
    border: none;
    height: 60px;
    font-size: 16px;
    padding: 0 25px;
    box-shadow: none;
}

.hero-search .form-control:focus {
    box-shadow: none;
    border: none;
}

.hero-search .btn {
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    white-space: nowrap;
}

.hero-search .btn i {
    margin-right: 6px;
}

/*====================================
Responsive
====================================*/

@media (max-width: 991px) {

    .hero-section {
        min-height: 500px;
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {

    .hero-section {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-search .input-group {
        flex-direction: column;
        border-radius: 15px;
        overflow: hidden;
    }

    .hero-search .form-control {
        width: 100%;
        border-bottom: 1px solid #ddd;
        border-radius: 0;
    }

    .hero-search .btn {
        width: 100%;
        height: 55px;
        border-radius: 0;
    }
}
