.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    padding: 25px 0;
}

.site-header {
    z-index: 999;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    max-height: 1.5rem;
    width: auto;
    max-width: 10rem;
    filter: invert(1);
}

.main-navigation {
    background: #EFE6E5;
    border-radius: 50px;
    display: none;
    flex-direction: row;
    padding-inline: 2rem;
}


header[data-isFrontPage="1"] .main-navigation{
    background: #ffffff;
}

header[data-isFrontPage="1"] .header-logo img {
    filter: invert(0);
}

#menu-header {
    display: flex;
    align-items: center;
    gap: 40px;
}
#menu-header a {
    padding: 0.5rem 1rem;
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
    color: inherit;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

#menu-header a:visited {
    color: inherit;
}

#menu-header .current_page_item {
    background: #F3604D;
    border-radius: 50px;
    color: white;
}

#menu-header a:hover {
    background: #F3604D;
    border-radius: 50px;
    color: white;
}

#menu-header ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-button {
    background: #EFE6E5;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header[data-isFrontPage="1"] .cta-button {
    background: #ffffff;
}

header[data-isFrontPage="1"]  {
    position:absolute;
    z-index: 999;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}

.cta-button {
    text-decoration: none;
    color: #F3604D;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: black;
    border: none;
}

.cta-button img, .cta-button svg {
    max-width:30px;
    max-height: 30px;
    fill: #F3604D;
}

.cta-button svg, .cta-button path {
    fill: #F3604D;
}

.cta-button button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.cta-text {
    display: none;
    font-weight: 700;
}

.cta-button:hover .cta-text {
    color: #ffffff;
}
.cta-button:hover {
    background-color: #F3604D;
    color: #ffffff;
    fill: #ffffff;
    cursor: pointer;
    stroke: #ffffff;
}
.cta-button:hover svg, .cta-button:hover path {
    fill: #ffffff;
    stroke: #ffffff;
    color: #ffffff;
}

header[data-isFrontPage="1"] .cta-button:hover {
    background-color: #F3604D;
}

.mobile-header {
    pointer-events: none;
    display: block;
}
.mobile-header-menu {
    background: #FDF3F2;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    z-index: 1000;
    transition: all 1s ease;
    transform: translateX(-100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-direction: column;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
body.menu-open .mobile-header {
    display: block;
    pointer-events: auto;
}
body.menu-open .mobile-header-menu {
    transform: translateX(0);
}


.mobile-header-menu-logo {
    filter: invert(1);
}

.mobile-header-menu-logo img {
    max-height: 1.5rem;
    max-width: 10rem;
}


#menu-mobile-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#menu-mobile-menu a{
    list-style: none;
    color: #F3604D;
    font-weight: 900;
    font-size: 1.5em;
}

.mobile-menu-close {
    background: transparent;
    padding: 0;
    outline: none;
    border: none;
}
.mobile-menu-close svg {
    width: 20px;
    height: auto;
}




/* MEDIA QUERIES */
@media (max-width: 360px) {
    .header-cta {
        height: 40px;
        width: 40px;
    }
    .header-logo img{
        height: 20px;
    }
}
@media (min-width: 360px) {
    
}
@media (min-width: 480px) {
    
}
@media (min-width: 768px) {

}
@media (min-width: 1024px) {
    .header-left {
        display: none;
    }
    .main-navigation {
        display: block;
    }
    .cta-text {
        display: block;
    }
    .cta-button {
        width: 180px;
        border-radius: 50px;
        height: auto;
        padding-block: 0.5rem;
        background-color: #EFE6E5;
    }
    header[data-isFrontPage="1"] .cta-button {
        background-color: #ffffff;
    }
    
}
@media (min-width: 1280px) {
    .header-cta {
        width: 180px;
        border-radius: 50px;
        height: auto;
        padding-block: 0.5rem;
    }
    
}
@media (min-width: 1440px) {
    
}
@media (min-width: 1920px) {
    
}