/* Styles for the home page header */

#homeHeader {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    background-color: #f5f4f4;
    padding: 20px 40px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #eaeaea;
}

#homeInnerHeaderWrapperDiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#homeHeaderLeftAyoraDiv {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    color: #0088cc;
}

#homeHeaderOuterSearchSectionDiv {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    padding: 15vh 0%;
}

#homeHeaderSearchSectionHeaderDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: 100%;
}

.homeHeaderSearchSectionHeaderTextDiv {
    font-weight: 600;
    text-align: center;
    color: #333;
}

#homeHeaderSearchSectionHeaderTopTextDiv {
    font-size: clamp(25px, 9vw, 40px);
    opacity: 0.8;
}

#homeHeaderSearchSectionHeaderBottomTextDiv {
    font-size: clamp(30px, 10.5vw, 60px);
    color: #0088cc;
}

@media screen and (max-width: 768px) {
    #homeHeader {
        padding: 25px 15px;
    }
}

@media screen and (max-width: 590px) {
    #homeHeaderSearchSectionHeaderDiv {
        gap: 5px;
    }
}

/* Styles for the non-home page header */

#header {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #eaeaea;
}

#innerHeaderWrapperDiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#headerLeftAyoraAndSearchBarOuterDiv {
    display: flex;
    align-items: center;
    gap: 70px;
}

#headerLeftAyoraDiv {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: bold;
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

#headerSearchBarDivForMobile {
    display: none;
}

@media screen and (max-width: 1050px) {
    #header {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #headerSearchBarDivForDesktop {
        display: none;
    }

    #headerSearchBarDivForMobile {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #header {
        padding: 25px 15px;
    }
}