/* CSS for the personalized theme */


/* GENERAL */
:root {
    --main-color: #060644;
    --main-bg-color: #fffdf4;
    --secondary-color: #1025A1;
}


/* HEADER */


/* CONTACT MODAL */
.contact_overlay {
    display: none; /* Hidden by default and flex when activated */
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 10; /* overlay on top the site */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* full screen */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(175,134,32,0.75);
}

.contact_popup {
    position: relative;
    margin-top: 80px;
    padding-top: 25px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 25px;
    border: 5px solid var(--main-color);
    border-radius: 20px;
    color: var(--main-color);
    background: var(--main-bg-color);
    -webkit-animation-name: animate_expand;
    -webkit-animation-duration: 2s;
    animation-name: animate_expand;
    animation-duration: 2s;
}

.contact_popup_header {
    height: 60px;
    display: flex;
    gap: 50px;
}

/* contact form */
.contact_popup_form {
	margin-top: 5px;
	margin-bottom: 3px;
	display: flex;
    flex-direction: column;
	align-items: center;
}

@media (max-width: 630px) {
    .contact_popup {
        padding-top: 15px;
        padding-left: 25px;
        padding-right: 25px;
        border: 3px solid var(--main-color);
    }

    .contact_popup_header {
        height: 150px;
    }

    .contact_popup_form {
        margin-top: 30px;
    }
}


@keyframes animate_expand {
    0% {
        transform: scale(0, 0);
        opacity: 0;
    }
    90% {
        opacity: 1;      
    }
    100% {
        transform: scale(1, 1);
        opacity: 1;
    }
}
