
/***############### General Styling Reset and Setup: reset, grid, typography, general classes and divs.  Mobile-first styling setup. ***/
/***########## Reset the styles, add box-sizing: border-box. ***/
html, body, div, span, p, img, a, br, ul, li, ol, header, nav, footer, table, button, label, input, textarea, select, tr, td, th, h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    border: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
}

/*For ease of development and maintainability, combine an element's width, padding, margin, and border into a final value, and enable this on all elements. */
/*Also reduce the chance of font-resizing on mobile devices.*/
html { box-sizing: border-box; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
*, *:before, *:after { box-sizing: inherit; }

/***########## Grid Column layout available.  Desktop and mobile settings.  Automatically make columns full width below a certain width. Very-small (vsm) 
columns display at their designated widths at all device sizes, small (sma) above the first breakpoint, large (lar) above the next breakpoint. ***/
.content { width: 100%; padding: 20px 10px 20px 10px; }
.content-row { width: 100%; padding: 20px 0 20px 0; }
.content-row:after { content: ""; display: block; clear: both; }
.content-row.no-content-row-padding { padding: 0; }
.content-row:first-of-type { padding-top: 0; }
.content-row:last-of-type { padding-bottom: 0; }
 
.col-sma-1, .col-sma-2, .col-sma-3, .col-sma-4, .col-sma-5, .col-sma-6, .col-sma-7, .col-sma-8, .col-sma-9, .col-sma-10, .col-sma-11, .col-sma-12,
.col-lar-1, .col-lar-2, .col-lar-3, .col-lar-4, .col-lar-5, .col-lar-6, .col-lar-7, .col-lar-8, .col-lar-9, .col-lar-10, .col-lar-11, .col-lar-12 {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.col-vsm-1, .col-vsm-2, .col-vsm-3, .col-vsm-4, .col-vsm-5, .col-vsm-6, .col-vsm-7, .col-vsm-8, .col-vsm-9, .col-vsm-10, .col-vsm-11, .col-vsm-12 {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}

.col-vsm-1 { width: 8.333333%; }
.col-vsm-2 { width: 16.666667%; }
.col-vsm-3 { width: 25%; }
.col-vsm-4 { width: 33.333333%; }
.col-vsm-5 { width: 41.666667%; }
.col-vsm-6 { width: 50%; }
.col-vsm-7 { width: 58.33333%; }
.col-vsm-8 { width: 66.666667%; }
.col-vsm-9 { width: 75%; }
.col-vsm-10 { width: 83.333333%; }
.col-vsm-11 { width: 91.666667%; }
.col-vsm-12 { width: 100%; }  

/* Switch to 12 columns at 700px for small columns and 1200px for large columns. */
@media only screen and (min-width: 700px){    
    .col-sma-1, .col-sma-2, .col-sma-3, .col-sma-4, .col-sma-5, .col-sma-6, .col-sma-7, .col-sma-8, .col-sma-9, .col-sma-10, .col-sma-11, .col-sma-12 {
        float: left;
        padding-left: 15px;
        padding-right: 15px;
    }
    .col-sma-1 { width: 8.333333%; }
    .col-sma-2 { width: 16.666667%; }
    .col-sma-3 { width: 25%; }
    .col-sma-4 { width: 33.333333%; }
    .col-sma-5 { width: 41.666667%; }
    .col-sma-6 { width: 50%; }
    .col-sma-7 { width: 58.33333%; }
    .col-sma-8 { width: 66.666667%; }
    .col-sma-9 { width: 75%; }
    .col-sma-10 { width: 83.333333%; }
    .col-sma-11 { width: 91.666667%; }
    .col-sma-12 { width: 100%; }    
}

@media only screen and (min-width: 1200px){
    .content { padding: 20px 0 20px 0; }
    .content-row { padding: 25px 0 25px 0; }
    .content-row:first-of-type { padding-top: 0; }
    .content-row:last-of-type { padding-bottom: 0; }
       
    .col-lar-1, .col-lar-2, .col-lar-3, .col-lar-4, .col-lar-5, .col-lar-6, .col-lar-7, .col-lar-8, .col-lar-9, .col-lar-10, .col-lar-11, .col-lar-12 {
        float: left;
        padding-left: 15px;
        padding-right: 15px;
    }
    .col-lar-1 { width: 8.333333%; }
    .col-lar-2 { width: 16.666667%; }
    .col-lar-3 { width: 25%; }
    .col-lar-4 { width: 33.333333%; }
    .col-lar-5 { width: 41.666667%; }
    .col-lar-6 { width: 50%; }
    .col-lar-7 { width: 58.33333%; }
    .col-lar-8 { width: 66.666667%; }
    .col-lar-9 { width: 75%; }
    .col-lar-10 { width: 83.333333%; }
    .col-lar-11 { width: 91.666667%; }
    .col-lar-12 { width: 100%; }
}

/***########## General Styling and Typography settings. ***/
body { background-color: #f3f3f3; }
h1 { font-size: 24px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }
h4 { font-size: 18px; }
ul { list-style-type: none; }
p,
address { padding-bottom: 16px; line-height: 22.4px; }
a { text-decoration: none; }
img { max-width: 100%; font-size: 0px; } /*Don't allow images to go offscreen horizontally */
address { font-style: normal; }
a:link, a:visited { color: #000000; }
a:hover { color: #0000cc; }
input, textarea, select { outline: 0; transition: 0.2s; }
input:focus, textarea:focus, select:focus { box-shadow: 0px 0px 3px 3px rgba(0, 102, 204, 0.6); transition: 0.2s; }

.body-wrapper { position: relative; width: 100%; min-width: 300px; padding: 0; border: 0; margin-left: auto; margin-right: auto;
                background-color: #ffffff; }

@media only screen and (min-width: 500px){
}

@media only screen and (min-width: 700px){
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }  
}

@media only screen and (min-width: 1200px){      
    h1 { font-size: 36px; }   
    h2 { font-size: 26px; }  
    h3 { font-size: 24px; }  
    h4 { font-size: 18px; }
}

@media only screen and (min-width: 1600px){
}

/***########## General layout settings and general classes. ***/
.justify-content > div { display: flex; flex-wrap: wrap; justify-content: center; }

/* General Resuable Classes */
.hidden-sr-only { display: block; clip-path: polygon(0 0, 0 0, 0 0, 0 0); overflow: hidden; width: 1px; height: 1px; padding: 0; margin: 0; border: 0; }
.width-100-percent { width: 100%; }
.clear-both { clear: both; }

/* Use .inner-wrapper for layouts where you want to have backgrounds go out of the site 'border' provided by .body-wrapper '*/
.inner-wrapper { position: relative; padding: 0; margin-left: auto; margin-right: auto; }

@media only screen and (min-width: 700px){
    .float-right-above-a-breakpoint { float: right; }
}

/* Form Validation classes */
.javascript-validation-results-contact-us { display: none; font-weight: bold; }
.javascript-validation-results-contact-us.show { display: block; }
.required-field-needed { box-shadow: 0px 0px 3px 3px rgba(204, 0, 0, 1); }
/***########## End of General Styling Reset and Setup ****/





/***############### Beginning of Website-specific style sheet. ****/

/* Site Color Setup.  Adjancent color scheme with elements of complimentary.

New Colors:
Adjacent colors:    
Style color 1:      #118822   medium green     17, 136,  34
Style color 2:      #154672   dark-blue        21,  70, 114
Style color 3:      #8da915   yellow-green    141, 169,  21

*/

:root {
    --color-1: #118822;
    --color-2: #154672;
    --color-3: #8da915;
}

h2, h3, h4 { font-weight: bold; }
h2 { font-size: 18px; }
h3 { padding: 5px 0 10px 0; }
h4 { font-size: 17px; }
a:link, a:visited { color: var(--color-1); transition: 0.4s ease-in; }
a:hover { color: var(--color-2); transition: 0.4s ease-in; }
a:focus,
a:focus-visible,
button:focus,
button:focus-visible { outline: 2px solid var(--color-1); outline-offset: 2px; }

input, textarea { padding: 10px 10px 10px 10px; border: 1px solid #000000; border-radius: 10px; }
input::placeholder, textarea::placeholder { color: var(--color-2); opacity: 1; }  /* For Firefox */ 
input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: var(--color-2); }  /* For IE 10-11 */
::-ms-input-placeholder { color: var(--color-2); }  /* Edge */
input:focus, textarea:focus { box-shadow: 0px 0px 3px 3px var(--color-1); transition: 0.2s; }
textarea { resize: vertical; }

/* General Classes */
.underline { text-decoration: underline; }
.content-row-extra-space-top { padding-top: 50px; }
.subheader { padding-left: 10px; color: var(--color-1); }


/* General sitewide sections */
.body-wrapper { background-color: #ffffff; }
.content, .header, .footer { background-color: #ffffff; }
.header { position: relative; margin-left: auto; margin-right: auto; }
.nav { padding: 10px 5px 10px 0px; margin: 0 auto 0 auto; background-color: #eeeeee;  }
.footer { padding: 60px 5px 60px 5px; margin: 0 auto 0 auto; text-align: center; background-color: var(--color-1); color: #ffffff; font-size: 14px; }
#desktopNav { display: none; }
#mobileNav { display: block; }


/* Footer Styles */
.footer__message { padding-bottom: 0; }

/* Header styles */
.main-title-container { padding-top: 10px; padding-left: 65px; }
.subtitle-container { padding-bottom: 10px; padding-left: 65px; }
.main-title-container__main-title a { font-weight: bold; color: var(--color-1); font-family: "Lato", sans-serif; font-size: 21px; }
.subtitle-container__sub-title { color: var(--color-2); }
.logo-container { display: block; }
.logo { position: absolute; top: 10px; left: 5px; width: 45px; }


/* Nav styles */
.nav__nav-list { text-align: center; font-size: 0; }
.nav__item { display: inline-block; padding-left: 0; padding-right: 25px; font-size: 16px; }
.nav__item:last-of-type { padding-right: 0; }
.nav .nav__nav-link { font-size: 16px; color: var(--color-1); }
.nav .current-page:link, .nav .current-page:visited { color: var(--color-2); text-decoration: underline; }
.nav .nav__nav-link:hover { color: var(--color-3); }


/* Message */
.message { padding: 35px 5px 35px 5px; margin-left: auto; margin-right: auto; background-color: #ffffff; font-size: 25px;
           background: linear-gradient(#999999, #cccccc, #999999); }
.message p { padding-bottom: 0; text-align: center; font-size: 20px; }
.message meter { display: block; margin: 0 auto; }


/* user input form info */
.input-container { padding-bottom: 10px; }
.input-container input, .input-container textarea { width: 100%; margin-top: 5px; margin-bottom: 5px; }
.get-help-email-container { padding-bottom: 15px; }

.contact-form { }
.validation-feedback { padding-top: 20px; }
.validation-feedback p { margin-bottom: 15px; font-size: 20px; font-weight: bold; }
.login-register { min-width: 183px; padding-bottom: 20px; margin-left: auto; margin-right: auto; }
.login-register__button { float: left; }
.login-register__other-text { float: left; padding-left: 15px; padding-top: 9px; }
.form-transmission-results { display: none; padding-top: 15px; padding-bottom: 15px; }
.form-transmission-results.show { display: block; }
.form-transmission-results p { padding-bottom: 12px; font-size: 16px; font-weight: bold; }

.contact-form__button { padding: 15px; margin-top: 5px; border-radius: 5px; background-color: var(--color-1); color: #ffffff; cursor: pointer; }
.javascript-validation-results-contact-us { padding-top: 15px; }



/*########## Grouped styles */


/*########## Classes on 1+ subpagess */



/*########## Page Specific Styles */
/* Index page */
.website-wrapper { padding-bottom: 60px; }
.website-wrapper--inner { border-radius: 8px; box-shadow: 0 0 3px 3px #999999; }
.website-wrapper__title { padding-top: 6px; padding-bottom: 12px; text-align: center; }
.website-wrapper__title__link { display: inline-block; font-size: 18px; font-weight: bold; }
.website-wrapper__outer-image { float: none; width: auto; height: auto; margin-bottom: 10px; overflow: hidden; border-radius: 8px 8px 0 0; box-shadow: 0 0 2px 2px #999999; }
.website-wrapper__description { padding-left: 8px; padding-right: 8px; padding-bottom: 8px; }
.website-wrapper__features { padding-left: 8px; padding-right: 8px; padding-bottom: 8px; }
.website-wrapper__technologies { padding-left: 8px; padding-right: 8px; padding-bottom: 10px; }

.website-wrapper .website-wrapper__title__link { border-bottom: 3px solid rgba(21, 70, 114, 0); color: var(--color-2); transition: 0.3s ease-in; }
.website-wrapper .website-wrapper__title__link:hover { border-bottom: 3px solid rgba(21, 70, 114, 1); transition: 0.3s ease-in; }
.website-wrapper__image { width: 100%; height: 200px; transition: 0.6s ease-in; }
.website-wrapper__outer-image:hover {  transition: 0.4s ease-in; }
.website-wrapper__outer-image:hover .website-wrapper__image { transform: scale(1.12); transition: 0.6s ease-in; }
.website-wrapper__image-link { display: block; width: 100%; height: 100%; border-radius: 8px 8px 0 0; }

.website-wrapper.zero .website-wrapper__image { background: url("../images/awesome-games-depot-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.one .website-wrapper__image { background: url("../images/westland-coffee-house-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.two .website-wrapper__image { background: url("../images/green-knoll-orchards-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.three .website-wrapper__image { background: url("../images/tualatin-top-bakery-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.four .website-wrapper__image { background: url("../images/yamhill-fields-nursery-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.five .website-wrapper__image { background: url("../images/chance-of-outdoors-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.six .website-wrapper__image { background: url("../images/riverfront-sandwiches-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.seven .website-wrapper__image { background: url("../images/serene-river-farms-screenshot.jpg") 0% 0%/cover no-repeat; }

.website-wrapper.eight .website-wrapper__image { background: url("../images/scenic-tree-farm-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.nine .website-wrapper__image { background: url("../images/mikes-fire-roasted-pizza-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.ten .website-wrapper__image { background: url("../images/general-testimonials-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.eleven .website-wrapper__image { background: url("../images/website-products-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.twelve .website-wrapper__image { background: url("../images/simple-events-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.thirteen .website-wrapper__image { background: url("../images/fantastic-slideshow-screenshot.png") 0% 0%/cover no-repeat; }
.website-wrapper.fourteen .website-wrapper__image { background: url("../images/bakery-morning-screenshot.jpg") 0% 0%/cover no-repeat; }
.website-wrapper.fifteen .website-wrapper__image { background: url("../images/weather-info-screenshot.jpg") 0% 0%/cover no-repeat; }

.index__more-content { padding-left: 10px; }
.index__more-content p:last-of-type { padding-bottom: 0; }


/*About page*/
.skills { }
.skills-more { padding-bottom: 40px; }
.skills-notes { }

 
/*Contact page*/



@media only screen and (min-width: 700px) and (max-width: 1199px){
    .the-websites > div > div:nth-child(2n+1){ content: ""; display: block; clear: both; }
    
    .website-wrapper.zero, .website-wrapper.two, .website-wrapper.four, .website-wrapper.six { margin-left: 0; }
    .website-wrapper.one, .website-wrapper.three, .website-wrapper.five, .website-wrapper.seven { margin-right: 0; }
}

@media only screen and (min-width: 1200px){
    .the-websites > div > div:nth-child(3n+1){ content: ""; display: block; clear: both; }
}



@media only screen and (min-width: 500px){
    
    h2 { font-size: 20px; }
    h3 { font-size: 20px; }
    
    /* General sitewide sections */
    .content { width: 100%; }
    .header { padding-bottom: 12px; }
    .main-title-container { padding-left: 80px; }  
    .subtitle-container { padding-left: 80px; }
    .logo { top: 20px; left: 10px; width: 60px; }

    /* Header styles */
    .main-title-container__main-title a { font-size: 32px; }
    
    /* Nav styles */
    .nav__nav-list { width: 100%; }
    .nav__item { padding-left: 0%; padding-right: 6%; font-size: 17px; }
    .nav .nav__nav-link { font-size: 17px; }
    
    
    /*########## Page Specific Styles */
    /*Index page*/    
    .website-wrapper__image { height: 236px; }
    .website-wrapper__title__link { font-size: 22px; }
    
}



@media only screen and (min-width: 700px){

    h2 { font-size: 26px; }

    /* General sitewide sections */
    .header { }     
    .main-title-container { padding-top: 42px; padding-left: 120px; }
    .subtitle-container {  padding-bottom: 0; padding-left: 120px; }

    /* Nav styles */
   
 
    /*########## Classes on 1+ subpagess */

   
    /*########## Page Specific Styles */
    /*Index page*/    
    .website-wrapper__image { height: 169px; }
}




@media only screen and (min-width: 1200px){

    h3 { font-size: 24px; }

    /* General sitewide sections */
    .body-wrapper {}
    .inner-wrapper { width: 1200px; }
    .header { padding-bottom: 30px; }  
    .main-title-container { padding-left: 170px; padding-top: 50px; } 
    .subtitle-container { padding-left: 170px; }
    .logo { top: 30px; left: 25px; width: 70px; }

    
    /* Header styles */
    .main-title-container__main-title a { font-size: 36px; }


    /* Nav styles */
        #mobileNav { display: none; }
    #desktopNav { display: block; position: absolute; top: -131px; right: 15px; border-radius: 5px; background-color: #ffffff; }
    .nav__item, .nav__item:last-of-type { display: inline-block; padding-left: 20px; padding-right: 20px; padding-bottom: 0; text-align: left; }
    
    
    /* Footer Styles */


    /*########## Classes on 1+ subpagess */

    
    /*########## Page Specific Styles */
    /*Index page*/
    .index-text { padding-left: 5px; padding-right: 5px; }
    .website-wrapper { padding-bottom: 70px; margin-left: 5px; margin-right: 5px; }
    
    .website-wrapper__image { height: 176px; }
    
    
    /*Contact page*/
    #contactForm { width: 50%; padding-top: 15px; }

}

@media only screen and (min-width: 1600px){
    
    /* General sitewide sections */
    .body-wrapper { }
    .inner-wrapper { width: 1540px; }
    
    
    /*########## Page Specific Styles */
    /*Index page*/
    .index-text { padding-left: 10px; padding-right: 10px; }
    .website-wrapper { padding-bottom: 70px; margin-left: 10px; margin-right: 10px; }
    .website-wrapper__image { height: 230px; }

    .website-wrapper__title { padding-top: 10px; padding-bottom: 18px; }
    .website-wrapper__title__link { font-size: 24px; }
    
}
