#headerComponent {
    width: 100%;
}

header {
    height: 82px;
    padding: 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;}

.logo {
    width: 30px;
}

button {
    z-index: 3;
}

header > a {
    z-index: 3;
}

#close-contact {
    color: white;
    background-color: var(--BW-95);
}

.contact-wrapper {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.contact-overlay {
    position: absolute;
    background-color: var(--yellowFull);
    border-radius: 100%;
    width: 20px;
    height: 20px;
    z-index: 2;
}

.contact-animation-open {
    animation-name: open;
    animation-duration: 1s;
    animation-timing-function: ease;
    /* animation-delay: .8s; */
    animation-fill-mode: both;
}

.contact-animation-close {
    animation-name: close;
    animation-duration: .5s;
    animation-timing-function: ease;
    /* animation-delay: .8s; */
    animation-fill-mode: both;
}


@keyframes open {
    from {
        width: 20px;
        height: 20px;
    }
    to {
        width: 300vw;
        height: 300vw;
    }
}

@keyframes close {
    from {
        width: 300vw;
        height: 300vw;
    }
    to {
        width: 20px;
        height: 20px;
    }
}

.contact-component {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    opacity: 0;

    text-align: center;

    -webkit-transition: all .3s ease;  
    -moz-transition: all .3s ease;  
    -o-transition: all .3s ease;  
    -ms-transition: all .3s ease;  
    transition: all .3s ease;
}

.contact-spacer {
    height: 5rem;
}

.contact-email {
    text-align: center;
}

.contact-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.contact-link > h3 {
    text-decoration: underline;
    text-underline-offset: .3rem;
    
}

.contact-link-icon {
    font-size: 1.5rem;
    padding-top: .25rem;
}

.contact-socials {
    margin-bottom: 4rem;
}

.contact-socials > .social-buttons {
    background-color: var(--BW-95);
    -webkit-transition: opacity .2s ease;  
    -moz-transition: opacity .2s ease;  
    -o-transition: opacity .2s ease;  
    -ms-transition: opacity .2s ease;  
    transition: opacity .2s ease;

}

.contact-socials > .social-buttons:hover {
    opacity: .8;
}

.contact-socials > .social-buttons > .social-icons {
    opacity: 1;
    filter: invert(85%) sepia(92%) saturate(1728%) hue-rotate(9deg) brightness(105%) contrast(99%);
}

.fade-out {
    -webkit-transition: all .3s ease;  
    -moz-transition: all .3s ease;  
    -o-transition: all .3s ease;  
    -ms-transition: all .3s ease;  
    transition: all .3s ease;
    opacity: 0;
    transform: scale(.98);
}

.fade-in {
    -webkit-transition: all .4s ease;  
    -moz-transition: all .4s ease;  
    -o-transition: all .4s ease;  
    -ms-transition: all .4s ease;  
    transition: all .4s ease;
    opacity: 1;
    transform: scale(1);
}



/* ––––––  RESPONSIVE CSS  –––––– */

@media only screen and (max-width: 800px) {

    .contact-animation-open {
        animation-duration: .8s;
    }
    
    .contact-animation-close {
        animation-duration: .5s;
    }

    @keyframes open {
        from {
            width: 20px;
            height: 20px;
        }
        to {
            width: 300vh;
            height: 300vh;
        }
    }
    
    @keyframes close {
        from {
            width: 300vh;
            height: 300vh;
        }
        to {
            width: 20px;
            height: 20px;
        }
    }

    .contact-socials {
        margin-bottom: 2rem;
    }

    .contact-spacer {
        height: 4rem;
    }

}


@media only screen and (max-width: 700px) {

}

/* ––––––  END RESPONSIVE CSS  –––––– */
