:root {
    --footer-color: #bc1e16;
}

#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: white;
    transition: opacity 0.15s linear;
    opacity: 0.5;
    pointer-events: none;
}

#overlay.hidden {
    opacity: 0;
}

#container {
    display: flex;
    flex-direction: column;

    width: 100%;
    min-height: 100vh;
}

@media only screen and (max-width: 1100px) {
    /* Small Screens */

    .public_link.hidden {
        display: none;
    }

    #content {
        width: 80%;
        padding: 50px 0;
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 1101px) {
    /* Large Screens */

    #fixed_menu_icon {
        display: none;
    }

    #navigation {
        display: none;
    }

    #overlay {
        display: none;
    }

    #content {
        width: 70%;
        max-width: 1200px;
        padding: 100px 0;
    }
}

/* #region navigation */

#navigation {
    position: fixed;
    z-index: 3;

    width: var(--navigation-width);
    height: 100%;

    font-family: 'Playfair Display';
    font-weight: bold;
    font-size: 20px;
    background-color: var(--light-grey);
}

#navigation.hidden {
    transform: translateX(-100%);
}

.navigation_link {
    display: block;

    margin: 10px;
    padding: 5px 10px;

    text-decoration: none;
    color: inherit;
    border-radius: 5px;
}

.navigation_link:hover {
    background-color: var(--medium-grey);
}

.menu_icon {
    margin: 5px 10px;
    padding: 10px 10px;

    height: 30px;

    border-radius: 5px;

    cursor: pointer;
}

#fixed_menu_icon {
    position: fixed;
    z-index: 1;
    margin-left: 25px;
}

#fixed_menu_icon:hover {
    background-color: var(--light-grey);
}

#navigation .menu_icon:hover {
    background-color: var(--medium-grey);
}

#container_header {
    position: sticky;
    top: 0;

    display: flex;
    justify-content: center;
    gap: 15px;

    font-family: 'Playfair Display';
    font-size: 25px;
    background-color: white;
}

.public_link {
    margin: 10px;
    padding: 10px;

    text-decoration: none;
    color: inherit;

    border-radius: 5px;

    cursor: pointer;
}

.public_link:hover {
    text-decoration: underline;
}

#vicki {
    font-weight: bold;
}

/* #endregion */

#content {
    flex: 1;
    display: flex;
    margin: auto;
}

/* #region footer */

#footer {
    background-color: var(--footer-color);
    color: white;
}

#inner_footer {
    margin: auto;
    padding: 50px 0;
    width: 60%;
    max-width: 800px;
}

#footer_content {
    display: flex;
}

#footer_content label {
    display: block;
    margin-bottom: 15px;

    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

#email_container {
    flex: 1;
}

#email_container input {
    padding: 5px;
    width: 75%;
    font-family: 'Roboto';
    font-size: 15px;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    color: #333;
}

#email_container button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: white;
    font-family: 'Montserrat';
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    color: var(--footer-color);
}

#email_container button:hover {
    background-color: var(--medium-grey);
}

#email_container input:focus {
    outline: none;
}

#socials_container {
    display: flex;
    flex-direction: column;
}

#socials_container a {
    font-size: 18px;
    text-decoration: none;
    color: inherit;
    font-family: 'Roboto';
    margin-bottom: 5px;
    letter-spacing: 1px;
}

#socials_container a:hover {
    color: var(--medium-grey);
}

#copyright {
    margin-top: 50px;
    font-family: 'Montserrat';
    font-weight: bold;
    letter-spacing: normal;
}

@media only screen and (max-width: 1100px) {
    /* Small Screens */

    #footer_content {
        flex-direction: column;
    }

    #email_container input {
        box-sizing: border-box;
        width: 100%;
    }

    #email_container button {
        display: block;
        margin-top: 15px;
    }

    #socials_container label {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 1101px) {
    /* Large Screens */

}

/* #endregion */
