﻿body {
    /* Removing margin and padding from the body of the page is a typical CSS styling practice */
    margin: 0;
    padding: 0;
    /* Default page text properties */
    font-family: "Gloucester MT";
    font-size: 18px;
    color: white;
    background-image: url(images/papyrus.png);
}

#nav-system {
    background-color: black;
    text-align: center;
    margin-top: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: 'French Script MT';
}

div span a {
    font-size: 250%;
    display: block;
    color: white;
    padding-bottom: 10px;
}

    div span a:hover {
        background-color: white;
        transition: 0.2s;
        color: darkturquoise;
    }

table, td, tr {
    text-align: center;
    display: block;
    line-height: 30px;
}

tr {
    padding: 10px;
}

p {
    line-height: 30px;
}

h1 {
    width: 100%;
    padding: 0;
    margin: 0;
}

    h1 img {
        width: 100%;
        box-shadow: 0px 0px 0px 0px;
        margin: 0;
        padding-top: 20px;
        border-radius: 0;
    }

.container {
    width: 100%;
}

.imageContainer {
    width: 100%;
    padding-left: 2%;
    padding-right: 4%;
    padding-bottom: 24px;
    box-sizing: border-box;
}

img {
    width: 100%;
    margin: 1%;
    margin-bottom: 8px;
    box-shadow: 0px 0px 0px;
    box-sizing: border-box;
    border-radius: 15px;
}

.galleryImg {
    box-shadow: black 0px 0px 5px;
}

iframe {
    width: 80%;
    height: 220px;
    border-radius: 16px;
    border: 4px solid black;
}

/* Styling for the virtual page sections */
.section {
    background-color: darkblue;
    box-sizing: border-box;
    padding: 20px;
    color: black;
    background-color: darkturquoise;
    text-align: center;
    border-style: solid;
    border-color: black;
}

#mainSection {
    text-align: left;
    color: darkturquoise;
    background-image: url(images/papyrus-dark.png);
}

p img {
    border-radius: 15px;
    width: 90%;
}

h2 {
    font-family: 'Freestyle Script';
    text-align: center;
    font-size: 30pt;
}

#informationSection {
    color: black;
    border-style: solid;
    border-color: black;
    background-image: url(images/white_wave.png);
}

.leftsideInfo {
    background-color: black;
    color: darkturquoise;
    border-radius: 15%;
    padding: 10px;
}

.rightsideInfo {
    color: black;
    font-size: 15px;
    border-radius: 15%;
}

#formSection {
    background-color: steelblue;
    color: white;
    border-style: solid;
    border-color: black;
    background-image: url(images/papyrus-dark.png);
}

textarea {
    width: 300px;
    height: 150px;
}

#photoGallerySection {
    background-color: slategray;
    color: black;
    border-style: solid;
    border-color: black;
    background-image: url(images/white_wave.png);
}

.caption {
    border-style: solid;
    border-color: black;
    background-color: black;
    color: white;
    border-radius: 10px;
}

footer {
    text-align: left;
    background-color: black;
    padding: 3px;
}

/* DESKTOP - Styling for larger screens */
@media screen and (min-width: 600px) {

    /*properties applied for nav system: font-size and padding*/
    #nav-system {
        text-align: center;
        width: 100%;
        position: fixed;
    }

    div span {
        width: 100%;
    }

        div span a {
            font-size: 25pt;
            display: inline;
            width: 25%;
            float: left;
        }

    .container {
        margin: auto; /* centers container on page*/
        max-width: 1000px;
    }

    .leftside {
        float: left;
        width: 49%;
        margin-right: 1%;
    }

    .rightside {
        float: right;
        width: 49%;
        margin-left: 1%;
    }

    .leftsideInfo {
        float: left;
        width: 45%;
        margin-right: 1%;
        padding: 4px;
    }

    .rightsideInfo {
        float: right;
        width: 48%;
        margin-left: 1%;
    }

    td {
        display: inline;
        padding: 30px;
    }

    table {
        text-align: center;
        width: 100%;
        margin: auto;
        text-align: center;
    }

    .clear {
        clear: both;
    }

    /* Spread images equally accross the page */
    .imageContainer {
        width: 33%;
        float: left;
    }

    #formSection {
        padding: 5px 400px;
        background-color: steelblue;
        color: white;
        border-style: solid;
        border-color: black;
        background-image: url(images/papyrus-dark.png);
    }
}
