/* ===============================
Author: Jonah Sanders
Date: September-December 2022

Notes:
Learned CSS+HTML from Build a Website From Scratch with HTML & CSS by Brad Hussey
Website is a modified version of his code

Color Palette:
-------------
Light Cream: #f2f3ee
Orange:      #d17f38
Yellow:      #e8c04f
Brown::      #4b2707
   =============================== */

   /* General */

   body{
    background: url('../IMAGES/BACKGROUND\ 2.jpeg') top left repeat;
    color: #4b2707;
    font-size: 14px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin: 0;
    width: 100vw;
    height: 100vh;

   }
   
   .container {
    margin: 0 auto;
    padding: 30px 24px;
   }

   /* Typography */
   
   h1,h2{
    color: #d17f38;
    font-size: 40px;
    font-weight: normal;
    font-family: 'Verdana', cursive, bold;
    line-height: 44px;
    margin: 0;
   }

   h1 {
    text-align: center;
    padding: 0 0 20px;
   }

   h1 em{
    font-style: normal;
    color: #4b2707;
   }

   h2 {
    font-size: 34px;
   }

   h3{
    margin: 0;
   }

   p.lead{
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    margin: 10px 0;
   }

   p{
    margin: 0;
   }

   a:link{
    color: #d17f38;
   }

   a:visited{
    color: #d17f38;
   }

   a:hover{
    color: brown;
   }

   hr{
    border: none;
    height: 150px;
    width: 630px;
    margin: 30px auto; 
    padding: -150px;
    background: url(../images/DOG\ DIVIDER.png) center center no-repeat
   }

   /* Header */
   
   header nav{
    text-align: center;
   }

   header nav ul{
    margin: 0;
    padding: 0;
    font-size: 36px;
    list-style: none;
    display: block;
    line-height: 141px; /*NOTE EDIT LOGO IMAGE TO BE THIS HEIGHT*/
   }

   header nav ul li{
    display: inline-block;
    padding: 0 20px;
   }

   header nav ul li a{
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    }
   header nav ul li a:hover{
    color: #4b2707;
    padding-top: 20px;
    background: url('../images/mabel.png') top center no-repeat;
   }

   header nav ul li#logo a{
    display: block;
    width: 292px;
    height: 141px;
    background: url('../images/SAMMI\ MAIN.png') center center no-repeat;
    text-indent: -9999px;
   }

   header nav ul li#logo a:hover{
    padding: 0;
    background: url('../images/SAMMI\ MAIN.png') center center no-repeat;
   }

   #blurb h1{
    font-size: 64px;
   }

   footer{
    margin-bottom: 10px;
    margin-top: 10px;
    background: #4b2707;
    color:#f2f3ee;
    text-align: center;
   }

   /* Story*/

    #thanks {
    text-align: center;
    }

    .container #about{
    padding-top: 30px;
    padding-bottom: -260px; 
    }

    .container #about p{
    padding: 10px;
    margin: 5px;
    }

   /* Hero */
   
   #Hero {
    background: #e8c04f url('../images/Hero\ Background.png') top left repeat;
   }

   #Hero .containter {
    position: relative;
   }
   
   #Hero .large-ribbon {
    height: 301px;
    width: 190px;
    background: url('../images/nobu.png') top left no-repeat;
    /*text-indent: -99999px;*/
    position: absolute;
    top: 50px;
    right: 40px;
   }

   #Hero .quote{
    float: left;
    font-family: 'Love Ya Like A Sister', cursive;
    font-size: 128px;
    color: #4b2707;
    text-align: center;
    position: absolute;
    top: 180px;
    left: 80px;
    }

    #Hero .quoteLine2{
    float: left;
    font-family: 'Love Ya Like A Sister', cursive;
    font-size: 128px;
    color: #4b2707;
    text-align: center;
    position: absolute;
    top: 306px;
    left: 120px;
    }
    
    #Hero .quoteLine25{
        float: left;
        font-family: 'Love Ya Like A Sister', cursive;
        font-size: 128px;
        color: #4b2707;
        text-align: center;
        position: absolute;
        top: 408px;
        left: 120px;
        }
    
        #Hero .quoteLine3{
            float: left;
            font-family: 'Love Ya Like A Sister', cursive;
            font-size: 96px;
            color: #4b2707;
            text-align: center;
            position: absolute;
            top: 536px;
            left: 120px;
            }
    
   #Hero img{
    text-align: center;
    margin: auto;
    display: block;
   }

   /* Timeline */

    #timeline #articles{
        width: auto;
        float: left;
        margin-right: 24px;
    }   

    #feature-image {
    width: 340px;
    margin-right: 120px;
    float: left;
    display: inline-block;
    }

    #feature-image2{
    width: 340px;
    margin-right: 120px;
    float: right;
    display: inline-block;
    }

    #news2 article{
        margin: 20px 0;
    }

    /*testimonials*/

    #testimonial h3{
        height: 360;
        font-size: 30px;
        display: block;
        flex-direction: none;
        align-items: center;
    }

    #testimonial p{
        display: flex;
        align-items: center;
        flex-direction: row;
        margin-bottom: 10px;
    }

    #testimonial_image{
        display: inline;
        align-items: center;
        flex-direction: row;
        
    }

    #moment_image{
        padding: 10px;
        margin: 20px;
        display:inline-block;
        align-items: center;
        flex-direction: row;
        
    }

   /* Force Elements to Self Clear its Children: http://css-tricks.com/snippets/css/clear-fix/ */

   .clearfix::after{
    visibility: hidden;
    display: block;
    content: " ";
    clear: both;
    height: 0;
   }
* html .group                {zoom: 1; } /*IE6*/
* :first-child+html .group  {zoom: 1; } /*IE7*/

