/* ================= HERO SECTION ================= */

.hero {
    position: relative;
    height: 90vh;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    top: 0;
    left: 0;
}

/* CONTENT */
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 900px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

/* HEADING */
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* SUBTEXT */
.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #eee;
}

/* ================= SEARCH BOX ================= */

.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px;
    border-radius: 50px;
    max-width: 650px;
    margin: 20px auto 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* INPUTS */
.search-box select {
    padding: 12px;
    border: none;
    outline: none;
    flex: 1;
    border-radius: 20px;
    font-size: 14px;
}

/* BUTTON */
.search-box button {
    background: linear-gradient(135deg, #f4a825, #ffcc33);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

/* BUTTON HOVER */
.search-box button:hover {
    background: #0b3d2e;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .search-box {
        flex-direction: column;
        border-radius: 15px;
        padding: 15px;
        gap: 12px;
    }

    .search-box select,
    .search-box button {
        width: 100%;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
    }
}