
/*      UNIVERSAL                                                       */
/*      ================================================================*/
* { box-sizing: border-box; }

/*      GLOBAL VARIABLES                                                */
/*      ================================================================*/
:root {
    --sunflower_yellow: #fff100;
    --light_yellow: #fdfbd8;
    --skyblue: #90C7E3;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #CCCCCC;
}

/*      ELEMENTS                                                        */
/*      ================================================================*/

body {
    background-image: url("../media/sunset3-cropped.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: auto;
    min-height: 100vh;
    color: var(--black);
    font-family: Arial, Arial, Helvetica, sans-serif;
    margin: 0px !important;
    padding: 0px 0px 50px !important;
    border: 0px !important;
    width: 100%;
    height: 100%;
}

header {
    background-image: url("../media/banner.jpg");
    background-size: 100% 100%;
    height: 225px;
    width: 100%;
    padding-top: 5px;
    padding-left: 20px;
}

    header h1 {
        letter-spacing: 0.2em;
        text-decoration: none;
        color: var(--sunflower_yellow);
        text-align: left;
        margin-left: 300px;
        padding-left: 100px;
        margin-top: 70px;
    }

nav {
    background-color: #203864;
    height: 120px;
    border-top: 3px outset #CCCCCC;
    border-bottom: 3px outset #90C7E3;
    text-align: center;
}

    nav ul {
        list-style-type: none;
        font-size: 150%;
        margin: 0;
    }

    nav li { 
        display: inline-flex;
        line-height: 60px;
    }

    nav a {
        text-decoration: none; 
        padding-left: 20px;
        padding-right: 40px;
        line-height: 60px;
    }

    nav a:link {
        text-decoration: none;
        color: var(--sunflower_yellow);
    }

    nav a:visited {
        text-decoration: none;
        color: var(--sunflower_yellow);
    }

    nav a:hover {
        text-decoration: none;
        font-weight: bold;
        color: white;
    }


h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', serif;
}

h1 {
    letter-spacing: 0.2em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.0em;
    padding-bottom: 0.5em;
}

h2 {
    color: #1976D2;
    text-shadow: 1px 1px #CCCCCC;
}

h3 {
    color: #000033;
}

dt {
    color: #002171;
}

main {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #eaeaea;
}

    main ul {
        marker: url(marker.gif)
    }

    main h1, h2 {
        font-size: 300%;
        margin-top: 25px;
        grid-column: 1 / 7;
        grid-row: 1 / 2;
        color: black;
        font-style: italic;
        text-align: center;
    }

    main h2 {
        font-size: 250%;
    }

    main img {
        width: 100%;
        height: 100%;
        padding-left: 20px;
        padding-right: 20px;
        object-fit: cover;
    }

    main video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        grid-column: 1 / 3;
        grid-row: 2 / 6;
    }

ol ol {
    margin: 0;
}

ol ol li {
    list-style-position: outside;
    padding: 0;
    margin: 0;
}

ol ol li::before {
    content: "";
    width: 20px;
    display: inline-block;
}

footer {
    background-color: #203864;
    height: 240px;
    border-top-style: groove;
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
}

    footer section {
        font-size: 90%;
        float: left;
        width: 33%;
        color: white;
        padding: 0 2em 0 2em;
        margin: 0;
    }


table {
    width: 100%;
    border: none;
    margin-right: 20px;
    margin-left: 30px;
    margin-bottom: 50px;
    padding-right: 20px;
}

td, th {
    padding: 0.5em;
    border: none;
    vertical-align: top;
}

th {
    background-color: #3a76b1;
    color: white;
    font-weight: bold;
    text-align: center;
}

td {
    text-align: left;
    border: none;
}

form {
    display: flex;
    flex-flow: column nowrap;
    margin-right: 25px;
}

input, textarea {
    font-size: 100%;
    margin-bottom: 0.5em;
}

input[type=submit] {
    font-family: Georgia, 'Times New Roman', serif;
    width: 10em;
    height: 4em;
    background-color: steelblue;
    color: var(--sunflower_yellow);
    align-self: center;
    margin-top: 1em;
}

textarea {
    height: 5em;
}


video, embed {
    width: 360px;
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}



/*      CLASSES                                                         */
/*      ================================================================*/

.menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;

}

.grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 100px 200px 200px 200px, 200px;
    padding: 15px;
    row-gap: 5px;
}

.highlight {
    color: #1976D2;
    font-weight: bold;
    text-align: center;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.foundation {
    font-weight: bold;
    font-style: italic;
    color: blue;
}

.package {
    text-align: justify;
    margin-right: 40px;
}

.tooltip {
    float: right;
    margin-bottom: 40px;
    padding-right: 15px;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 60px;
    color: var(--sunflower_yellow);
    text-align: center;
    padding-top: 60px;

    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.listspace {
    margin-bottom: 10px;
}

.condensed {
    letter-spacing: 0.1em;
}

.nospacing {
    letter-spacing: 0;
}

.volunteerItem {
    font-weight: bold;
    color: blue;
    margin: 0;
}

.volunteerDesc {
    font-weight: normal;
    color: black;
    margin-bottom: 10px;
    margin-left: 50px;
}

.boardMember {
    height: 100;
    width: 50;
}



/*      IDs                                                             */
/*      ================================================================*/

#contact {
    font-size: 90%;
}

#wrapper {
    width: 80%;
    min-width: 750px; 
    padding-top: 30px;
    margin: auto;
}

#logo {
    float: left;
    margin: 30px 0 5px 50px;
}

#quicklinks {
    float: right;
    margin-bottom: 40px;
    padding-right: 5px;
}

#Picture {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
    height: 500px;
    width: 100%;
    padding: 0;
}

#Intro {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-size: 225%;
    color: #086493;
    grid-column: 3 / 7;
    grid-row: 1 / 2;
    text-align: center;
    padding-top: 40px;
}

#Thanks {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-size: 225%;
    color: #086493;
    grid-column: 1 / 7;
    grid-row: 1 / 2;
    text-align: center;
}

#Content, #Content1, #Content2, #Content3, #Content4, #Content5 {
    font-size: 125%;
    text-align: justify;
    padding-left: 100px;
    padding-right: 100px;
}

#Content {
    grid-column: 1 / 7;
    grid-row: 2 / 6;
    padding: 0 20px 20px 20px;
    margin-left: 40px;
    margin-right: 40px;
}

#Content1 {
    grid-column: 1 / 7;
    grid-row: 2 / 5;
}

#Content2 {
    grid-column: 4 / 7;
    grid-row: 2 / 3;
    padding-bottom: 50px;
}

#Content3 {
    grid-column: 3 / 7;
    grid-row: 2 / 5;
}

#Content4 {
    grid-column: 1 / 7;
    grid-row: 4 / 5;
}

#Content5 {
    grid-column: 5 / 7;
    grid-row: 2 / 3;
    font-size: 100%;
}

#map {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
    padding: 10px;
    object-fit: contain;
}

#smallmap {
    grid-column: 5 / 7;
    grid-row: 5 / 6;
}

#smallIcon {
    grid-column: 6 / 7;
    grid-row: 5 / 6;
}

#learnmore {
    text-decoration: none;
    grid-column: 3 / 5;
    grid-row: 5 / 6;
    text-align: right;
    align-self: center;
    color: blue;
    font-weight: bold;
}

#learnmoreMCD {
    text-decoration: none;
    grid-column: 3 / 6;
    grid-row: 5 / 6;
    text-align: right;
    align-self: center;
    color: blue;
    font-weight: bold;
}

#founder {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

#rightlink {
    text-decoration: none;
    font-size: 125%;
    font-weight: bold;
    float: right;
    padding-right: 20px;
}

#leftlink {
    text-decoration: none;
    font-size: 125%;
    font-weight: bold;
    float: left;
    padding-left: 20px;
}

#title {
    color: #086493;
}

#thanks {
    padding-top: 30px;
    text-align: center;
}

#imgRight {
    grid-column: 5 / 7;
    grid-row: 1 / 2;
    object-fit: fill;
}

#iWantYou {
    width: 60%;
    height: 60%;
    margin: auto;
    display: block;
    padding-top: 50px;
    object-fit: contain;
}

#indent {
    margin-left: 50px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

#Founder {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

#Tagline1 {
    font-family: Arial, Arial, Helvetica, sans-serif;
    font-size: 170%;
    letter-spacing: 0.1em;
    color: var(--sunflower_yellow);
    margin: 0;
    padding: 20px 0px 10px;
}

#Tagline2 {
    font-family: Arial, Arial, Helvetica, sans-serif;
    font-size: 170%;
    letter-spacing: 0.1em;
    color: var(--sunflower_yellow);
    margin: 0;
    padding: 10px 0px 50px;
}



/*      Media Queries                                                   */
/*      ================================================================*/

/*
@media (min-width: 600px) {

    nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
    }

    nav li {
        border-bottom: none;
    }

    section {
        padding-left: 2em;
        padding-right: 2em;
        grid-row: 2 / 3;
        grid-column: auto;
    }

    .content main {
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr 1fr;
    }

    h2 {
        grid-row: 1 / 2;
        grid-column: 1 / 5;
    }


    footer {
        grid-row: auto;
        grid-column: 1 / 5;
    }

    form {
        width: 60%;
        display: grid;
        grid-gap: 1em;
        grid-template-columns: 6em 1fr;
        grid-template-rows: auto;
    }

    input[type="submit"] {
        grid-column: 2 / 3;
        width: 9em;
        margin-bottom: 40px;
    }

    #special {
        grid-row: auto;
        grid-column: 1 / 5;
    }
}



@media (min-width: 1024px) {

    #wrapper {
        margin: auto;
        width: 80%;
        border: 3px solid #90C7E3;
        box-shadow: 3px 3px #333333;
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 180px auto;
    }

    header {
        grid-row: 1 / 2;
        grid-column: 1 / 3;
    }

    nav {
        text-align: left;
        padding-left: 1em;
        grid-row: auto;
        grid-column: 1 / 2;
    }

        nav ul {
            flex-direction: column;
            padding-top: 1em;
        }

    div {
        grid-row: 2 / 3;
        grid-column: 2 / 3;
    }

    main {
        grid-row: 3 / 4;
        grid-column: 2 / 3;
    }

    #reservations {
        grid-row: 2/ 4;
    }

    footer {
        grid-row: 4 / 5;
        grid-column: 2 / 3;
    }
}

*/
