/* -------------------HEADER------------------- */

#header {
    min-height: 140px;
    position: sticky;
    top: 1rem;
    z-index: 99;
}
.header-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0 1rem;
    position: relative;
    z-index: 102;
}
    .header::after {
        content: "";
        z-index: 101;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(20,25,25, 0.85);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        filter: blur(2px);
        backdrop-filter: blur(1px);
    }
.header-main-image-link {
    z-index: 103;
}
.header-main-image {
    height: auto;
    width: 10vw;
    max-width: 15rem;
    min-width: 6rem;
    z-index: 103;
}
.header-nav-buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 102;
}
.header-nav-button-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
    .header-nav-button-link:hover {
        text-decoration: none;
    }
.header-nav-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 8px solid white;
    border-radius: 10px;
    padding: 0;
    height: 3.625rem;
    width: 7vw;
    min-width: 7rem;
    max-width: 10rem;
    position: relative;
    z-index: 103;
    background-color: rgba(120, 215, 215, .3);
}
    /*.header-nav-button::after {
        content: "";
        opacity: 0.3;
        background: #78D7D7;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 102;
    }*/
    .header-nav-button:hover {
        background-color: rgba(120, 215, 215, .7);
    }
    .header-nav-button p {
        text-decoration: none;
        color: white;
        font-size: 2rem;
        z-index: 103;
    }
.heaeder-social-buttons-container {
    gap: 0;
}
.header-social-button-img {
    height: auto;
    width: 96px;
}

.header-hamburger-button {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 100;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: .25rem;
    border: none;
    background-color: transparent;
    height: 4rem;
    width: 4.5rem;
    cursor: pointer;
}

.hamburger-line {
    min-height: 3px;
    width: 3.6rem;
    background-color: #707070;
    border-radius: 1.5px;
    margin: 0;
    transition: transform 500ms ease, background-color 500ms ease;
}

.header-mobile-backdrop {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(20,25,25,.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 3;
}

/*MEDIA QUERIES*/
@media screen and (max-width: 1100px) {
    .header-nav-button p {
        font-size: 1rem;
    }
    .header-nav-button {
        min-width: 5rem;
    }
}
@media screen and (max-width: 950px) {
    .header {
        flex-direction: column;
        width: 95vw;
        min-height: 5rem;
        margin: 0;
        padding: 0;
    }
    .header-main-image {
        width: auto;
        height: 5rem;
    }
    .header-hamburger-button {
        display: flex;
    }
    .header-nav-buttons-container {
        flex-direction: column;
        display: none;
    }
    .heaeder-social-buttons-container {
        flex-direction: row;
    }
    .header-nav-button {
        height: 3.625rem;
        width: 80vw;
        min-width: 7rem;
        max-width: 100%;
        position: relative;
        z-index: 103;
        background-color: rgba(120, 215, 215, .3);
    }
}

.mobile-header-active {
    display: flex;
}

.mobile-header-active-hide {
    display: none;
}

/* ------------FOOTER------------- */

#footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.footer-container {
    background: rgba(20,25,25, 0.85);
    height: 5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.footer-container p {
    color: white;
    font-size: .8rem;
    text-align: center;
}