﻿/* Written by Nick Blanchard
    5208343191
*/

/* Title Font */
@font-face {
    font-family: title_font;
    src: url("Fonts/Navajo_Font.ttf");
}

/* Fancy Font */
@font-face {
    font-family: fancy_font;
    src: url("Fonts/fancy.ttf");
}

/* Roasting Font */
@font-face {
    font-family: roasting_font;
    src: url("Fonts/Roasting.otf");
}


/* Background for page */
body {
    background-color: rgb(248, 248, 232);
    text-align: center;
    margin: 0px;
    padding: 0px;
    min-width: 1540px;
}
body img {
    height: 100px;
    padding-bottom: 50px;
}

.divider {
    height: 2px;
    width: 85%;
    background-color: black;
    margin: auto;
}


/* Header */
.header {
    color: brown;
    margin-top: 20px;
    /*overflow: hidden;*/
    display: flow-root;
    /*max-height: 200px;*/

}
.header .name {
    font-family: title_font;
    width: 30%;
    text-align: left;
    float: left;
    font-size: 100px;
    margin-left: 7.5%;
    margin-top: -50px;
    color: brown;
}
.header .topnav {
    text-align: center;
    float: right;
    margin-right: 7.5%;
    min-width: 50%;
    margin-top: 60px;
}
.header ul {
    list-style-type: none;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    float: right;
    margin-right: 2.5%;
    margin-top: 30px;
}

.header li {
    float: left;
}

    .header li a {
        font-size: 25px;
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        border: 1px solid rgb(248, 248, 232)

    }

    .header li a:hover:not(.active) {
        background-color: #111;
    }



    /* DROPDOWN MENU TAKEN ROM W3SCHOOLS */
    .dropbtn {
        background-color: #333;;
        color: white;
        padding: 16px;
        font-size: 40px;
        border: none;
        cursor: pointer;
        width: 275px;
        min-height: 50px;
        margin-top: 100px;
      }
      
      .dropdown {
        position: relative;
        display: inline-block;
      }
      
      .dropdown-content {
        display: none;
        position: absolute;
        background-color: #333;;
        min-width: 200px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        font-size: 34px;
      }
      
      .dropdown-content a {
        display: block;
        color: white;
        text-align: center;
        padding: 40px 16px;
        text-decoration: none;
        width: 243px;
      }
      
      .dropdown-content a:hover {
        background-color: #873e23;
      }
      
      /* .dropdown:hover .dropdown-content {
        display: block;
      } */
      
      .dropdown:hover .dropbtn {
        background-color: #111;
      }







/* Under Header */
.underheader {
    color: brown;
    margin-top: -100px;
    overflow: hidden;
    max-height: 100px;
}
.underheader .subtitle {
    /* font-family: "Lucida Console", "Courier New", monospace; */
    font-family: Roasting_font;
    text-align: left;
    float: left;
    font-size: 30px;
    margin-left: 7.5%;
    color: brown;
    margin-top: 10px;
}



/* Main Content */
.content {
    min-height: 300px;
    width: 100%;
}

.content .intro_title {
    padding: 0px;
    margin: 0px;
    font-family: Roasting_font;

}

.intro_title p {
    font-family: Roasting_font;
    font-size: 70px;
    margin-left: 7.5%;
    margin-right: 7.5%;
    margin-bottom: 0px;
}

.intro_body p {
    font-family: Roasting_font;
    font-size: 40px;
    text-align: center;
    margin-top: 0px;
    margin-left: 10%;
    margin-right: 10%;
}

.active {
    background-color: #873e23;
}

.footer {
    min-height: 200px;
}



/* About Page */
.content .about_title {
    font-family: "Lucida Console", "Courier New", monospace;
    text-align: right;
    font-size: 40px;
    margin-right: 20%;
    color: brown;
}
.content .column_left {
    width: 30%;
    height: 100%;
    margin: 5px;
    text-align: center;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 60px;
}
.content .column_right {
    width: 50%;
    margin: 5px;
    text-align: center;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 60px;
}
.content .column_right .about_title {
    font-family: "Lucida Console", "Courier New", monospace;
    text-align: center;
    font-size: 40px;
    color: brown;
}
.content .column_right p {
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 20px;
    color: brown;
}
.content .about_caption {
    font-family: "Lucida Console", "Courier New", monospace;
    text-align: center;
    font-size: 15px;
    color: brown;
    margin: 0px;
}
.content li {
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 20px;
    color: brown;
    text-align: left;
}


/* Contact Page */
.content .contact_title {
    font-family: "Lucida Console", "Courier New", monospace;
    text-align: left;
    font-size: 40px;
    margin-left: 20%;
    color: brown;
}
.email_link {
    font-family: "Lucida Console", "Courier New", monospace;
    text-align: center;
    font-size: 25px;
    color: rgb(42, 50, 165);
    margin: 0px;
}


/* Listings */
.listing {
    width: 15%;
    margin: 10px;
    display: inline-block;
    z-index: 0;
    overflow: hidden;
    height: 25%;
    padding: 5%;
    padding-top: 0px; 
    border: 5px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    cursor: pointer;
    vertical-align: top;

}
.listing img {
    width: 80%;
    height: 80%;
    margin: auto;
    padding: 0px;
    display: block;

}
.listing .categories {
    font-size: 20px;
    margin: 5px;
    margin-bottom: 15px;
    padding: 0px;
    font-family: 'Courier New', Courier, monospace;
    display: block;
    font-style: italic;
}
.listing .description {
    font-size: 25px;
    margin: 0px;
    padding: 0px;
    font-family: 'Courier New', Courier, monospace;
    display: block;
}
.listing .header {
    font-size: 40px;
    margin: 0px;
    padding: 0px;
    font-family: 'Courier New', Courier, monospace;
    display: block;
}
.listing .price {
    font-size: 20px;
    margin: 0px;
    font-family: 'Courier New', Courier, monospace;
}

/* Details Page */
.details {
    width: 80%;
    margin: 10px;
    display: inline-block;
    z-index: 0;
    overflow: hidden;
    height: 25%;
    padding: 5%;
    padding-top: 0px; 
    border: 5px solid rgba(255, 255, 255, 0.5);
    text-align: center;

}
.details p {
    margin: 0;
    padding: 0;
}
.details img {
    width: 40%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    display: inline-block;

}
.details .container {
    width: 100%;
    min-height: 40%;
    margin: auto;
    padding: 0px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
}
.details .categories {
    font-size: 25px;
    margin: 5px;
    margin-bottom: 20px;
    padding: 0px;
    font-family: 'Courier New', Courier, monospace;
    display: block;
    font-style: italic;
}
.details .description_container {
    height: 100%;
    width: 40%;
    margin:0;
    padding:0;
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: top;
}
.details .description {
    font-size: 40px;
    margin: 0px;
    margin-top: 10px;
    padding: 0px;
    font-family: 'Courier New', Courier, monospace;
    /*position: absolute; */
    top: 50%;
    /*-ms-transform: translateY(-50%);
    transform: translateY(-50%); */
    
}
.details .header {
    font-size: 60px;
    margin: 5px;
    margin-bottom: 10px;
    padding: 0px;
    font-family: 'Courier New', Courier, monospace;
    display: block;
}
.details .price {
    font-size: 30px;
    margin: 5px;
    font-family: 'Courier New', Courier, monospace;
}
.details {
    width: 80%;
    font-size: 30px;
    font-style: italic;
}


/* Update and Random Thoughts pages */
.content .paragraph {
    text-align: left;
    padding: 2%;
    margin-left: 7.5%;
    margin-right: 7.5%;
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 20px;
    color: brown;
}


/* About page */
.content .column_right .about {
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 20px;
    color: brown;
}



/* MOBILE ONLY - to fix buggy screen width */
@media only screen and (max-device-width: 480px) {
    body {
        min-width: 0px;
    }

    .listing {
        width: 25%;
    }
}


/* Banner image at top of page */
/*.banner {
    width: 75%;
    min-height: 300px;
    min-width: 800px;
    margin: auto;
    margin-top: 6%;
    background-color: rgba(255, 255, 255, .75);
    text-align: center;
    border: 4px white;
    border-style: solid;
    padding: 10px;
    position: relative;
}

    .banner .title {
        font-size: 70px;
        font-family: movie;
        color: rgb(230 0 0);
        text-align: center;
        margin: auto;
        padding-top: 60px;
    }

    .banner .quote {
        font-size: 30px;
        font-family: 'Times New Roman', Times, serif;
        color: rgb(255 0 0);
        text-align: center;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 10px;
    }

    .banner a {
        display: inline-block;
        font-size: 20px;
        color: white;
        text-align: center;
        margin: 15px;
        padding: 10px;
        background-color: purple;*/
        /*
        position: absolute;
        bottom: 5%;
            */
    /*}*/

/* Content */
/*.content {
    overflow: hidden;
    background-color: rgba(255, 255, 255, .75);
    min-height: 500px;
    min-width: 800px;
    width: 75%;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 20px;
    border: 4px white;*/
    /*border-top: 0px transparent;*/
    /*border-style: solid;
    padding: 10px;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}

    .content .button_bottom {*/
        /* Button at bottom of page */
        /*margin: auto;
        background-color: red;
        border: 2px white;
        border-style: solid;
        padding: 10px;
        font-size: 15px;
        color: white;
    }

        .content .button_bottom:hover {*/
            /* Button at bottom of page */
            /*margin: auto;
            background-color: purple;
        }

.banner .button_quote {*/
    /* Button at bottom of page */
    /*margin: auto;
    background-color: rgba(200, 200, 200, .8);
    border: 2px white;
    border-style: solid;
    padding: 6px;
    font-size: 12px;
    margin-left: 15px;*/
    /*
        position: absolute;
        bottom: 5%;
            */
/*}

    .banner .button_quote:hover {*/
        /* Button at bottom of page */
        /*background-color: rgba(100, 100, 100, .8);
    }*/

/* Listings */
/*.entry {
    background-color: rgba(255, 255, 255, .4);
    overflow: hidden;
    max-height: 450px;
    min-height: 400px;
    width: 40%;
    min-width: 100px;*/
    /*max-width: 350px;*/
    /*margin: 20px;
    margin-bottom: 30px;
    margin-top: 0px;
    padding: 5px;
    border: 3px white;
    border-style: solid;
    display: inline-block;
    text-align: center;
    z-index: 0;
    position: relative;
    vertical-align: top;
}


    .entry img {*/
        /* Movie image */
        /*max-height: 40%;
        max-width: 40%;
        width: auto;
        display: inline-block;
        margin-top: 5px;
        margin-inline: 1%;
    }

    .entry h1 {
        font-size: 35px;
        color: black;
        font-family: 'Times New Roman', Times, serif;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .entry .description {*/
        /* Review for each */
        /*font-size: 25px;
        color: black;
        font-family: 'Times New Roman', Times, serif;
        margin-top: 5px;*/
        /*
    background: -webkit-linear-gradient(#333, #eee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        */
    /*}

    .entry .extra {*/
        /* To contain the year and stars */
        /*font-size: 13px;
        color: black;
        font-family: 'Times New Roman', Times, serif;
        margin-bottom: 5px;
    }

    .entry .button_read_more {*/
        /* For when the button is not being displayed */
        /*position: absolute;
        left: 50%;
        bottom: 20%;
        margin-left: -50px;
        padding: 15px;
        background-color: transparent;
        border: none;
        color: white;
        text-align: center;
        font-size: 0px;
    }

    .entry:hover .button_read_more {*/
        /* For when the button is being displayed */
        /*background-color: red;
        font-size: 15px;
    }

        .entry:hover .button_read_more:hover {*/
            /* For when the button is being moused over */
            /*background-color: purple;
        }

    .entry .button_see_less {*/
        /* For when the button is not being displayed */
        /*position: absolute;
        left: 50%;
        bottom: 20%;
        margin-left: -50px;
        padding: 15px;
        background-color: transparent;
        border: none;
        color: white;
        text-align: center;
        font-size: 0px;
    }

    .entry:hover .button_see_less {*/
        /* For when the button is being displayed */
        /*background-color: red;
        font-size: 15px;
    }

        .entry:hover .button_see_less:hover {*/
            /* For when the button is being moused over */
            /*background-color: purple;
        }

.entry_second_state {*/
    /* Identical to the first state. Used for the purpose of read more / see less ONLY */
    /*background-color: rgba(255, 255, 255, .4);
    overflow: hidden;
    max-height: 450px;
    min-height: 400px;
    width: 42%;
    min-width: 100px;*/
    /*max-width: 350px;*/
    /*margin: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 5px;
    border: 3px white;
    border-style: solid;
    display: inline-block;
    text-align: center;
    z-index: 0;
    position: relative;
    vertical-align: top;
}

    .entry_second_state img {*/
        /* Movie image */
        /*max-height: 40%;
        max-width: 40%;
        width: auto;
        display: inline-block;
        margin-top: 5px;
        margin-inline: 1%;
    }

    .entry_second_state h1 {
        font-size: 35px;
        color: black;
        font-family: 'Times New Roman', Times, serif;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .entry_second_state .description {*/
        /* Review for each */
        /*font-size: 25px;
        color: black;
        font-family: 'Times New Roman', Times, serif;
        margin-top: 5px;*/
        /*
    background: -webkit-linear-gradient(#333, #eee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        */
    /*}

    .entry_second_state .extra {*/
        /* To contain the year and stars */
        /*font-size: 13px;
        color: black;
        font-family: 'Times New Roman', Times, serif;
        margin-bottom: 5px;
    }

    .entry_second_state .button_read_more {*/
        /* For when the button is not being displayed */
        /*position: absolute;
        left: 50%;
        bottom: 20%;
        margin-left: -50px;
        padding: 15px;
        background-color: transparent;
        border: none;
        color: white;
        text-align: center;
        font-size: 0px;
    }

.entry:hover .button_read_more {*/
    /* For when the button is being displayed */
    /*background-color: red;
    font-size: 15px;
}

    .entry:hover .button_read_more:hover {*/
        /* For when the button is being moused over */
        /*background-color: purple;
    }

.entry .button_see_less {*/
    /* For when the button is not being displayed */
    /*position: absolute;
    left: 50%;
    bottom: 20%;
    margin-left: -50px;
    padding: 15px;
    background-color: transparent;
    border: none;
    color: white;
    text-align: center;
    font-size: 0px;
}

.entry:hover .button_see_less {*/
    /* For when the button is being displayed */
    /*background-color: red;
    font-size: 15px;
}

    .entry:hover .button_see_less:hover {*/
        /* For when the button is being moused over */
        /*background-color: purple;
    }*/



/* Navigation List */
/*.topnav {*/
    /* Stores entire navigation list */
    /*display: block;
    text-align: center;
}

ul {
    list-style-type: none;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    float: left;
    margin-left: -25px;
}

li {
    display: inline-block;
    padding: 3px;
}

    li button {
        display: inline-block;
        color: white;
        padding: 10px;
        background-color: red;
        border: 1px solid transparent;
    }

        li button:hover {
            background-color: purple;
            border: -5px;
            border-color: white;
            border: 3px solid white;
            margin: -2px;
        }

.topnav .search_bar input[type=text] {
    float: right;
    padding: 6px;
    border: none;
    margin: auto;
    margin-top: 0px;
    font-size: 15px;
    width: 80%;
}

.topnav .search_bar {
    float: right;
    padding: 6px;
    border: none;
    margin: 0px;
    margin-top: 10px;
    font-size: 17px;
    display: inline-block;
    min-width: 340px;
    margin-left: -20px;
}

    .topnav .search_bar button {
        float: right;
        padding: 6px 10px;
        margin-top: 0px;
        margin-right: 0px;
        background: #ddd;
        font-size: 17px;
        border: none;
        cursor: pointer;
    }*/

/* FOOTER */
/*.footer {
    border: 5px white solid;
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    background-color: red;
    color: white;
    text-align: center;
    justify-content: center;
}

    .footer a {
        display: inline-block;
        font-size: 20px;
        color: white;
        text-align: center;
        margin: 15px;
        padding: 10px;
        background-color: darkred;
        margin-top: 25px;*/
        /*
        position: absolute;
        bottom: 5%;
            */
    /*}*/

/* Box */
/*.box {
    background-color: rgba(255, 255, 255, .6);
    width: 90%;
    min-height: 200px;
    display: inline-block;
    margin: auto;
    text-align: left;
    padding: 40px;
    vertical-align: top;
}

    .box ul {
        vertical-align: top;
        display: inline-block;
    }

    .box li {
        display: list-item;
        font-size: 25px;
        font-family: Impact, Charcoal, sans-serif;
        color: black;
        text-align: left;
        list-style: disc;
    }

    .box h1 {
        font-size: 50px;
        font-family: Impact, Charcoal, sans-serif;
        color: red;
        text-align: center
    }

    .box h2 {
        font-size: 40px;
        font-family: Impact, Charcoal, sans-serif;
        color: purple;
    }


    .box p {
        font-size: 30px;
        font-family: Impact, Charcoal, sans-serif;
        color: black;
    }*/


/* COLUMN */
/*.column {
    display: inline-block;
    width: 40%;
    padding: 20px;
    vertical-align: top;
}*/



/* MOBILE ONLY - to fix buggy scrolling with parallax background */
/*@media only screen and (max-device-width: 480px) {

    body {
        background-image: url('background_mobile.png');
    }

    .banner {
        width: 80%;
    }

    .topnav .search_bar input[type=text] {
        width: 350px;
    }

    .content {
        width: 80%;
    }

        .content button {
            font-size: 20px;
        }

        .content .button_bottom {
            font-size: 30px;
            margin-bottom: 20px;
        }

    .entry {
        margin: 10px;
        width: 42%;
    }

    .topnav .search_bar {
        margin-top: -10px;
        float: left;
        margin-left: 10px;
        font-size: 20px;
    }*/

    /* Make the read more / see less buttons invisible on phones */
    /*.entry button {
        font-size: 0px;
        background-color: transparent;
    }

    .entry_second_state button {
        font-size: 0px;
        background-color: transparent;
    }
}*/
