


/* ===== HEADER ===== */
header {
    background-color: #302A26;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
#header-intro-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
#header-left-logo {
    width: 7vw;
    height: auto;
}
header h1 {
    color: #F7C873;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
}
#title-line{
    border: none;
    height: 2px;
    background-color: #F19513;
    margin-top: 0;
}

/* ===== NAVIGATION ===== */

#navigation {
    padding-top: 8px;
    padding-bottom: 8px;
}
nav a {
    padding-left: 10px;
    padding-right: 10px;
}


/* ===== BODY ===== */
body {
    position: relative;
    flex-direction: column;
    margin: 0;
}
main {
    padding-left: 3%;
    padding-right: 3%;
    padding-block: 2%;
    position: relative;
    z-index: 1;
    
}


/* ===== FOOTER ===== */
footer {
    background-color: #383838;
    padding-inline: 2%;
    padding-block: 0;
    margin-top: auto;
    font-size: small;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---Left--- */
#left-center-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: stretch;
    align-content: stretch;
    flex-grow: 1;
    margin: 0;
}
#left-footer {
    display: block;
    flex-grow: 1;
    align-self: auto;
}

/* ---Center--- */
#center-footer {
    color: #ffffff40;
    display: block;
    flex-grow: 1;
    align-self: auto;
}
/* ---Right--- */
#right-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 0;
    flex-grow: 1;
}

/* ---Content--- */
.footer-links {
    display: flex;
    align-items: center;
}
.footer-links p,a {
    margin-right: 8px;
}
a {
    color: #F7C873;
    text-decoration: none;
}
a:hover {color: #866c3c;}
a:active  {color: #c5c8e5;}

#right-footer img {
    height: 30px;
    margin: 2% 0;
    filter: invert(80%);
}

/* Footer Resize */
@media screen and (min-width: 1100px) {
    #left-center-footer {
        flex-grow: 2;
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: stretch;
    }
    #left-footer {flex-grow: 1}
    #center-footer {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #right-footer {
        flex-grow: 0;
        width: 33.3%;
    }
}