/* Box Model Hack */
* {
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/
/* light orange- #FFAA4D
orange- #FF8800 */
body{
  font-size: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4{
  font-family: 'Lora', serif;
}

a, span, p{
  font-family: 'Roboto', sans-serif;
}


/******************************************
/* LAYOUT
/*******************************************/

/******** 
main landing page 
*********/

.hero{
  padding-top: 1rem;
  background-color: #F3F7F8;
  background-image: url(../img/macron.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  
}

header {
  height: 90px;
  width: 100%;
  /* background-color: #F3F7F8; */
}

header nav{
  display: flex;
  justify-content: center;
  margin: auto;
  width: 80%;
}

nav .logo, .footer-top .footer-section-left .container .logo{
  width: 35%;
}

.logo img{
  height: 70px;
  width: auto;
}

nav .links{
  width: 65%;
}

.links ul{
  display: flex;
  justify-content: space-between;
  list-style-type: none;
}

header nav ul li a{
 
  color: #000000;
  text-decoration: none;

}

/* hidden hamburger formatting start */

.p-menu1{
  
  height: 100%;
}

/* Hamburger */
.hamburger1 {
 height: 45px;
 margin: 10px;
 display: -ms-grid;
 display: grid;
 grid-template-rows: repeat(3, 1fr);
 justify-items: center;
 z-index: 120;
}

.hamburger1 div {
 background-color: black;
 position: relative;
 width: 40px;
 height: 5px;
 margin-top: 7px;
 -webkit-transition: all 0.2s ease-in-out;
 transition: all 0.2s ease-in-out;
}

#toggle1 {
 display: none;
}

#toggle1:checked + .hamburger1 .top {
 -webkit-transform: rotate(-45deg);
         transform: rotate(-45deg);
 margin-top: 22.5px;
}

#toggle1:checked + .hamburger1 .meat {
 -webkit-transform: rotate(45deg);
         transform: rotate(45deg);
 margin-top: -5px;
}

#toggle1:checked + .hamburger1 .bottom {
 -webkit-transform: scale(0);
         transform: scale(0);
}

#toggle1:checked ~ .menu1 {
 height: 340px;
}


/* Menu */
.menu1 {
 width: 100%;
 background-color: white;
 margin: 0;
 display: -ms-grid;
 display: grid;
 grid-template-rows: 1fr repeat(4, 0.5fr);
 grid-row-gap: 25px;
 padding: 0;
 list-style: none;
 clear: both;
 width: auto;
 text-align: center;
 height: 0px;
 overflow: hidden;
 transition: height .4s ease;
 z-index: 120;
 -webkit-transition: all 0.3s ease;
 transition: all 0.3s ease;
}

.menu1 a:first-child {
 margin-top: 40px;
}

.menu1 a:last-child {
 margin-bottom: 40px;
}

.link1 {
 width: 100%;
 margin: 0;
 /* padding: 5px 10px; */
 font-size: 700 20px;
 font-family: 'Roboto', sans-serif;
 text-decoration: none;
 text-transform: uppercase;
 color: black;
}

.link1:hover {
 background-color: transparent;
 color: rgb(61, 61, 61);
 -webkit-transition: all 0.3s ease;
 transition: all 0.3s ease;
}


/* hamburger formatting end */


main .landing{
  display: flex;
  flex-direction: column;
  margin-left: 10%;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 60%;

}


main .landing h1{
  font-size: 4rem;
}

main .landing .form{
  width: 100%;
  height: 3rem;
  margin-bottom: 4rem;
}

main .landing .form input{
  height: 3rem;
  padding: 1rem;
  width: 70%;
  border: 1.5px solid rgb(158, 158, 158);
  border-radius: 0.2rem;
}

main .landing .form a, .section-one-botton{
  padding: 0.94rem 2rem;
  border-radius: 0.2rem;
  color: white;
  text-decoration: none;
  background-color: #FF8800;
}

main .landing ul{
  padding: 0 0 4rem 0;
}

main .landing ul li{
  height: 2rem;
  margin-right: 3rem;
  list-style: none;
  display: inline;
}

main .landing ul li a{
  height: 2rem;
  text-decoration: none;
}
main .landing ul li a i{
  width: 3%;
  color: #FF8800;
}

main .landing ul li a span{
  color: #000000;
  font-size: 1.1rem;
}



/********************* 
about us section 
**********************/

.section-one{
  display: flex;
  justify-content: flex-start;
  
  width: 100%;
  background-color: rgb(243, 244, 245); 
}

.section-one .section-one-left{
  width: 40%;
}

.section-one .section-one-left > img{
 height: 100%;
  width: 100%;
  
}

.section-one .section-one-right{
  width: 50%;
  padding: 4rem 3rem 4rem 1rem;
  
}

.section-one .section-one-right span{
  color: #FF8800 ;
  font-size: 1.1rem;
}

.section-one .section-one-right h2{
  color: #000000;
  font-size:  3.5rem;
  margin-top: 1rem;
}

.section-one .section-one-right p, .section-four p, footer .footer-top .footer-section-left p, footer span{
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  word-spacing: 0.2rem;
  line-height: 1.5rem;
}

.section-one .section-one-right p + p{
  margin-bottom: 3rem;
}

/******************** 
menu items section
*********************/

.section-two{
  background-color: rgb(236, 237, 239);
}

.section-two {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 5rem;
}

.section-two > section{
  display: flex;
  flex-direction: column;
  text-align: center;

}

section > a{
  color: #FF8800 ;
  font-size: 1.1rem;
  text-decoration: none;
  
}

.section-h2{
  font-size: 3rem; 
}

.section-two ul{
  display: flex;
  justify-content: space-between;  
  width: 50%;
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 4rem;
  height: 2rem; 
  padding: 0;
  border-bottom: 1.6px solid rgba(128, 128, 128, 0.54);
}



.section-two ul li a{
  text-decoration: none;
  color: #000000;
  font-size: 1.1rem;
  padding-bottom: 0.8rem;
}

/* make this hover orange when on it:
.section-two ul .breakfast{
  color: #FF8800;
  border-bottom: 2.3px solid #FF8800
} */

.section-two .categories li{
  list-style: none;
  display: inline;
  width: 20%;
  padding-bottom: 1rem;

}

.section-two section section{
  width: 100%;
  padding-bottom: 4rem;
}

.section-two section section img{
  height: 20rem;
  margin: 1rem;
}

/*********************
store info section
********************/

.section-three{
  
  background-color: rgb(243, 244, 245); 
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 4rem 0;
  text-align: center
}

.section-three > section{
  width: 70%;
}

.section-span{
  color: #FF8800 ;
  font-size: 1.1rem;
}

.section-three section .contact-number{
  color: #FF8800;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "lora", serif;
}

.hours{
  display: flex;
  justify-content: space-around;
  padding-bottom: 1rem;
  
}

.open{
  display: flex;
  flex-direction: column;
}

.open .time, .open .day{
  font-family: "lora", "serif";
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.phone{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-three section i{
  color: #FF8800 ;
  padding-bottom: 2rem;
}

.section-three section img{
  margin-top: 3rem;
  width: 75%;
} 

/******** 
reviews
*********/

.section-four{
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 80%;
  margin: auto;
  padding: 4rem 0;
}

.section-four h3{
  font-family: 'Roboto', sans-serif;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
  font-size: 1.8rem;
  font-weight: 400;
}

.section-four span ~ span{
  font-size: 1.2rem;
  color:  rgba(128, 128, 128, 0.664);
}

.section-four .five-stars{
  padding-top: 1rem;
  color: #FF8800 ;
}
.section-four p{
  margin: 2rem 10%;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 2.2rem;
  color: rgb(100, 100, 100);
}

/********* 
/*footer
************/

footer {
  width: 100%;
  background-color: rgb(243, 244, 245); 
  padding: 3rem 2rem 2rem 2rem;
}

.footer{
  font-size: .8rem;
  margin: 0;
}

footer .footer-top{
  display: flex;
  justify-content: space-between;
}

footer .footer-top .footer-section-left{
  width: 35%;
}

footer .footer-top .footer-section-left .container{
  display: flex;
  flex-direction: column;
}

footer .footer-top .footer-h3{
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

footer .footer-top .footer-section-right{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 35%;
  padding: 1rem;
}

footer .footer-top .footer-section-right .form{
  display: flex;
  flex-direction: column;
  width: 100%;
}

footer .footer-top .footer-section-right .form input{
  height: 3rem;
  padding: 1rem;
  width: 100%;
  border: 1.5px solid rgb(158, 158, 158);
  border-radius: 0.2rem;
  margin-bottom: .2rem;
}

footer .footer-top .footer-section-right .form a{
  padding: 0.94rem 1.8rem;
  border-radius: 0.2rem;
  color: white;
  text-decoration: none;
  background-color: #FF8800;
  width: max-content;
}

footer .footer-bottom{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 1.5rem;
}

footer .footer-bottom .social-two{
  display: flex;
  padding-left: 0;
}

footer .footer-bottom .social-two li{
  list-style-type: none;
  padding: 1rem;
}

footer .footer-bottom .social-two li a{
  color: #FF8800;
}


/******************************************
/* MEDIA QUERIES
/*******************************************/

/* hide hamburger on full screen */
@media screen and (min-width:901px){
 .burg{
  display: none;
  }
  
  .landing .logo{
    display: none;
  }
}

@media screen and (max-width:1000px) {
  /* make images 2 rows */
  .section-two section section{
    padding: 0 15% 3rem 15%;
  }
}

@media screen and (max-width:900px){
  /* hide nav on smaller screens */
  .menu-main{
    display: none;
  }

  .burg{
    display: flex;
    justify-content: space-between;
    margin-left: 10%;
  }

  .landing h1{
    display: none;
  }

  main .landing h1 + .logo img{ 
    padding-bottom: 4rem;
    height: 175px;
  }

  /* fix button issue */
  main .landing .form{
    display: flex;
  }

  /* hiding image and adjusting formating for no image in about us section */
  .section-one .section-one-left{
    display: none;
  }
  .section-one .section-one-right{
    width: 80%;
    padding: 5% 10%; 
  }
}

@media screen and (max-width:768px) {
  /* hide h1 and drop logo down to main */
  main .landing h1{
    display: none;
  }
  /* make heading smaller */
  .section-one .section-one-right h2{
    font-size:  2rem;
  }
  .section-h2{
    font-size: 2rem; 
  }

  /* readjust image padding to fit 2 rows */
  .section-two section section{
    padding: 0 0 3rem 0;
  }

  .hours{
    flex-direction: column;
  }
}

@media screen and (max-width:600px) {
/* adjust social section */
  main .landing ul li{
    height: 2rem;
    margin-right: 2rem;
    list-style: none;
    display: inline;
  }
 /* make courses links 2 rows */


}

@media screen and (max-width:530px) {
  /* make logo smaller */
  nav .logo{
    width: 25%;
  }

  /* make photos single column */
  .section-two section section{
    padding: 0 15% 3rem 15%;
  }

  /* make footer sections stack */
  footer .footer-top{
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  footer .footer-top .footer-section-left{
    width: 50%;
  }
  footer .footer-top .footer-section-right{
    padding: 0;
    width: 50%;
  }
}

