/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img{
    width: 100%;
}

h2 {
    font-family: 'Gloria Hallelujah', cursive;
    font-size: 20pt;
    text-align: center;
    padding: 14px;
    color: rgb(59, 0, 20);
}

h3 {
    font-family: "eigerdals", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15pt;
    text-align: center;
    padding: 14px;
    color: rgb(59, 0, 20);
}

p {
    font-family: "eigerdals", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 11pt;
    text-align: center;
    padding: 14px;
    color: rgb(59, 0, 20);
}

a {
    font-family: 'Gloria Hallelujah', cursive;
    font-size: 13pt;
    text-align: center;
    padding: 14px;
    color: rgb(59, 0, 20);
    
}

a:hover {
    color: rgb(255, 255, 255);
}

#wandc h2, #awac p, #come h2, #come p, #lvendors h2, #lvendors p {
    color:white;
}

#quote h2 {
    color:white;
    font-size: 13pt;
}

nav {
    z-index: 100;
    position: fixed;
    width: 100%;
    padding: 1%;
    justify-content: space-around;
    background-color: rgb(251, 212, 195);
    font-size: 20px;
    align-items:center;
    display: flex;
   
}


/* hide the mobile nav at desktop size */
.navbar {
    display: none;
  }
  
  
  /* existing nav bar code from https://codepen.io/alvarotrigo/pen/wvrzPWL */
  
  .navbar {
    width: 100%;
    box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
    position: fixed;
    z-index: 100;
    
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
    background:  rgb(251, 212, 195);
  
  }
  
  .navbar .menu-items {
    display: flex;
  }
  
  .navbar .nav-container li {
    list-style: none;
  }
  
  .navbar .nav-container a {
    text-decoration: none;
    color: rgb(59, 0, 20) ;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
  }
  
  .navbar .nav-container a:hover{
      font-weight: bolder;
  }
  
  .nav-container {
    display: block;
    position: relative;
    height: 60px;
  }
  
  .nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }
  
  .nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: rgb(59, 0, 20) ;
  }
  
  .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  
  .navbar .menu-items {
    padding-top: 120px;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .9);
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
  }
  
  .navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
  }
  
  .logo {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 1.2rem;
    color: #0e2431;
  }
  
  .nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .logo{
    display: none;
  }
  
  

#hero {
    padding-top: 8%;
    background: rgb(59, 0, 20) ;
}

#about {
    background: rgb(59, 0, 20) ;
    padding-left: 15%;
    padding-right: 15%;
}

#events {
    background: purple url(images/events.png) center center no-repeat;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-left: 10%;
    padding-right: 10%;
}

#monday, #tuesday, #wednesday, #thursday, #friday, #saturday, #sunday, #hat{ 
    width: 50%;
}

#vendors {
    background: rgb(59, 0, 20);
}

#leftvendors {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#lvendors {
    padding-top: 20%;
}


#workshopsandclasses {
    background: rgb(59, 0, 20) ;
    padding: 3%;
    
}

#awac {
    padding-top: 10%;
}

#wandc {
    width: 100%;
}

#wcolo { 
    display:flex;
    justify-content:space-between;
}


#contact {
    background: rgb(255, 255, 255);
}

#bodcontact {
    display:flex;
    justify-content:space-between;
}

#leftcont, #rightcont, #lvendors, #shop{
    width: 50%;
}

#tent {
    width: 45%;
    padding-top: 10%;
}

#rightwandc {
    width: 55%;
}

#leftcont {
    padding-top: 10%;
    padding-bottom: 10%;;
}

#rightcont {
    padding: 20px;
    padding-top: 5%;
}

#quote {
    background: rgb(59, 0, 20) ;
}

html {
    scroll-behavior: smooth;
}


.carousel-cell {
    width: 100%
    /* one slide per screen */
}

.carousel-cell img {
        width: 100%
        /* make imgage fill whole cell */
}

/* phone */

@media screen and (max-width: 828px) {
    #leftcont, #lvendors, #shop, #tent, #rightwandc, #awac, #boot {
        width: 100%;
    }

    #monday, #tuesday, #wednesday, #thursday, #friday, #saturday, #sunday, #hat{ 
        width: 100%;
    }

    #lvendors {
        padding-top: none;
        padding-bottom: 9%;
    }

    #shop {
        display: none;
    }
    
    #wcolo, #bodcontact {
        display: block;
    }



    nav {
        display:none;
      }

      .navbar {
        display: block;
      }

      #quote h2 {
        color:white;
        font-size: 10pt;
    }
}
