.page_header {
    min-height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background: linear-gradient(to left, var(--primary), var(--secondary));
}

.heading_container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.page_header .columns {
    align-items: flex-end
}

.page_header .columns .column1, .page_header .columns .column2 {
    width: 50%;
} 

.page_header .columns .column2 {
    padding-left: 65px;
    align-items: flex-end;
    display: flex;
}


.page_header .columns .column2 img {
    width: 100%;
    border-radius: var(--button-radius);
}

.page_header h1 {
    color: var(--light-text);
    font-size: 64px;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: var(--shadow);
    margin-top: 0px;
    font-weight: bold;
}

.page_header p {
    color: var(--light-text);
    margin-bottom: 35px;
    display: block;
}

.page_header .location_selector_container {
    padding: 25px;
    border-radius: var(--button-radius);
    background: var(--light-primary-bkgd);
    width: 100%;
    box-shadow: var(--shadow);
}

.page_header .location_selector_container h2 {
    color: var(--secondary);
}

.page_header .location_selector_container p {
    color: var(--dark-text);
}

.page_header .location_selector {
    margin-bottom: 15px;
}

.page_header .location_selector .selector_label {
    color: var(--dark-text);
    min-width: 225px;
    margin-right: 15px;
    display: inline-block;
}

.page_header .location_selector select {
    font-size: 18px;
    width: 100%;
    color: var(--light-text);
    -webkit-appearance: none;
    background: none;
    appearance: none;
    border: none;
}

.page_header .location_selector select option {
    color: var(--dark-text);
}

.page_header .location_selector_container #city_select {
    display: none;
    flex-direction: column;
}

.page_header .selector_container {
    position: relative;
    background-color: var(--accent);
    border-radius: var(--button-radius);
    padding: 12px;
    min-width: 300px;
    max-width: 500px;
    margin-top: 15px;
}

.page_header .selector_container::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 15px;
        width: 24px; /* Chevron size */
        height: 24px;
        background: url('../../img/down-chevron-white.svg') no-repeat center;
        background-size: contain;
        transform: translateY(-50%);
        pointer-events: none;
}

@media (max-width: 1200px)
{


    .page_header .columns .column2 {
        display: none;
    }

    .page_header .columns {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .page_header .columns .column1 {
        flex-direction: row;
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: flex-start;
    }

    .page_header {
        min-height: unset;
    }

    .page_header h1 {
        font-size: 39px;
    }

    .page_header .heading_container {
        padding-right: 55px;

    }


.page_header .location_selector {
    flex-direction: column;
}
    
}

@media (max-width: 1400px)
{
    .page_header .location_selector select {

        min-width: 250px;
    
    }

    .page_header .location_selector .selector_label {
        min-width: unset;
    }
    
}

@media (max-width: 768px)
{
    .page_header {
        height: unset;
        min-height: 90vh;
    }

    .page_header .columns .column1 {
        flex-direction: column
    
    }

    .page_header .heading_container {
        padding-right: unset;

    }

    .page_header .location_selector_container h2 {
        font-size: 26px;
    }


  


}

