/* START general */
:root {
    --header-footer-colour: rgba(204, 206, 255, 0.9);
    --header-footer-colour-less-opaque: rgba(204, 206, 255, 0.7);
    --nav-margin-x: 5px;
    --nav-short-logo-h: 45px;
    --vof-blue: rgb(21, 22, 71);
    --vof-blue-light: rgb(149, 151, 232);
}
html,
body,
body * { box-sizing: border-box; }
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 62.5%;
    margin: 0;
    padding: 0;
}
/* END general */

/* START nav */
nav {
    align-items: center;
    background-color: var(--header-footer-colour);
    border-radius: 100px;
    box-shadow: 0 2px 3px rgba(21, 22, 71, 0.333);
    display: flex;
    flex-wrap: wrap;
    font-size: 1.15rem;
    left: 0;
    margin: 67px auto 0 auto;
    max-width: 1075px;
    padding: 10px;
    position: sticky;
    top: 0;
    width: calc(100% - 4vw);
    z-index: 1;
}
nav > #logo {
    border-radius: 50px;
    cursor: pointer;
    filter: drop-shadow(0 0 2px white);
    transition: all 0.25s;
    width: 95px;
}
nav > div { margin-left: var(--nav-margin-x); }
nav a {
    background-color: white;
    border-bottom: 1px solid var(--vof-blue);
    border-left: 1px solid var(--vof-blue-light);
    border-right: 1px solid var(--vof-blue-light);
    border-top: 1px solid var(--vof-blue-light);
    border-radius: 5px;
    color: black;
    cursor: pointer;
    display: inline-block;
    margin: 0 var(--nav-margin-x);
    padding: 9px 14px;
    text-decoration: none;
    transition: all 0.25s;
}
nav a:first-of-type { margin-left: calc(var(--nav-margin-x) * 2); }
nav > a:hover {
    background-color: var(--vof-blue);
    color: white;
    transform: scale(1.05);
}
nav.scrolled {
    border-radius: 0;
    flex-wrap: wrap;
    margin: 0 auto 54px auto;
    max-width: 100%;
    padding: 8px 10px;
    position: fixed;
    width: 100%;
}
nav.scrolled > #logo { width: var(--nav-short-logo-h); }
@media (min-width: 1001px) {
    nav.scrolled + section { margin-top: 182px; }
}
@media (max-width: 1000px) {
    nav {
        border-radius: 0;
        flex-wrap: wrap;
        margin: 0 auto;
        padding: 8px 10px;
        position: fixed;
        width: 100%;
    }
    nav > #logo { width: var(--nav-short-logo-h); }
    nav > a {
        margin: 0 0 0 2.5px;
        padding: 7px 7.5px;
    }
}
@media (max-width: 700px) {
    nav > a { font-size: 0.9rem; }
}
@media (max-width: 550px) {
    nav > a { font-size: 0.8rem; }
}
@media (max-width: 500px) {
    nav {
        background-color: var(--header-footer-colour-less-opaque);
        border-bottom-left-radius: 40px !important;
        border-bottom-right-radius: 40px !important;
        left: unset;
        right: 12px;
        width: auto !important;
    }
    section { padding-top: 0 !important; }
    nav > a { display: none; }
    nav > #logo { width: 72px; }
}
/* END nav */

/* START content */
section {
    margin: 0;
    padding: 67px 0 50px 0;
    font-size: 1.15rem;
}
section > div { padding: 35px 20px; }
section:nth-child(even) > div {
    background-color: var(--vof-blue);
    box-shadow: 0 0 10px 2px var(--vof-blue-light);
    color: white;
}
section > div > div {
    margin: 0 auto;
    max-width: 1024px;
}
section > div > div :last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
h1, h2, h3, h4, h5, h6 { color: var(--vof-blue); }
section:nth-child(even) h1,
section:nth-child(even) h2,
section:nth-child(even) h3,
section:nth-child(even) h4,
section:nth-child(even) h5,
section:nth-child(even) h6 { color: white; }
h1 {
    font-size: 2.2rem;
    margin-top: 0;
    padding-top: 0;
}
h2 {
    font-size: 1.8rem;
    margin-top: 30px;
}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1.1rem; }
@media (max-width: 900px) {
    h1 { font-size: 1.95rem; }
    h2 { font-size: 1.65rem; }
    h3 { font-size: 1.45rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1.1rem; }
    section { padding-top: 45px; }
}
blockquote {
    border-left: 2px solid var(--vof-blue);
    padding: 9px 0 9px 14px;
}
section:nth-child(even) blockquote { border-left-color: white; }
#vision-mission > div > div {
    align-items: center;
    display: flex;
}
#discipleship-process {
    filter: drop-shadow(0 0 7.5px var(--vof-blue));
    max-width: 375px;
    padding-left: 2vw;
    width: 100%;
}
@media (max-width: 1000px) {
    #vision-mission > div > div{ display: block; }
    #discipleship-process {
        display: block;
        margin: 0 auto;
        padding-left: 0;
        padding-top: 20px;
    }
    blockquote { margin: 10px 0; }
}
@media (max-width: 550px) {
    #discipleship-process { max-width: 300px; }
}
dt {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 25px 0 7px 0;
}
.contact-item {
    display: block;
    margin: 7px 0 7px 25px;
}
/* END content */

/* START footer */
footer {
    background-color: var(--header-footer-colour);
    box-shadow: 0 -2px 3px rgba(21, 22, 71, 0.333);
    color: black;
    text-shadow: 1px 1px 5px white;
    padding: 10px 15px;
    font-size: 1.1rem;
    text-align: center;
    font-style: italic;
    position: sticky;
    bottom: 0;
    left: 0;
}
@media (max-width: 700px) {
    footer { font-size: 0.9rem; }
}
@media (max-width: 500px) {
    footer {
        padding: 6px 7px;
        position: static;
    }
}
/* END footer */