@charset "utf-8";

/* Author: Corey Burgos
   Date:   12/10/2022

   eCommerce Project
*/

/* Default */

* {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* End Default */



body {
  background: rgb(58, 58, 58);
  color: white;
  height: 100%;
}


/* Header */

header {
  margin: 0;
  background-color: black;
  background-image: url(images/bread6.jpg);
  background-size: 100%;
  background-position: center;
  border-top: black solid 5px;
  border-spacing: 0;
  text-align: center;
}

header .overlay {
  background-color: rgba(0, 0, 0, .5);
}

header a {
  color: white;
  margin-top: 60px;
  font-size: 20px;
  text-decoration: none; 
}

header a:hover {
  text-decoration: underline;
}

header .logo a {
  display: inline-block;
  background-image: url(images/title.gif);
  background-repeat: no-repeat;
  background-size: 300px;
  width: 300px;
  height: 300px;
  align-items: center;
}


/* Navbar Settings */

.menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.menu li {
    display: inline-block;
    text-align: center;
    font-size: 18px;
    margin: 0;
    padding-top: 22px; 
    padding-bottom: 22px;
    padding-left: 9px;
    padding-right: 9px;
    transition: all  0.3s ease-in-out;
}

.menu li:hover {
    background-color: grey;
    color: black;
}

.menu li a {
    color: white;
    text-decoration: none;
}

.top-nav {
    margin: 0;
    padding: 0;
    text-align: center;
    flex-direction: row;
    align-items: center;
    background-color: black;
    color: #FFF;
}
  
.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
#menu-toggle {
    display: none;
}
  
.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}
  
.menu-button::before {
    content: '';
    margin-top: -8px;
}
  
.menu-button::after {
    content: '';
    margin-top: 8px;
}
  
#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}
  
#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}
  
#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

/* End Nav Bar Settings */

/* End Header */



/* Hero */

.hero {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: white;
  color: rgb(58, 58, 58);
  position: relative;
}

.hero h1 {
  padding: 30px;
  color: rgb(58, 58, 58);
  font-weight: 100;
  font-size: 2rem;
}

.hero figcaption {
  color: rgb(58, 58, 58);
}

/* End Hero */



/* Our Menu */

.bread-menu ul {
  text-align: center;
  padding-bottom: 60px;
}

.bread-menu li {
  font-size: 1.5rem;
  line-height: 40px;
}

/* End Our Menu */



/* About Us Page */

.about {
  width: 100%;
  padding-top: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  position: relative;
  text-align: center;
  display: inline-block;
  align-items: center;
  justify-content: center; 
} 

.about h1 {
  color: white;
  margin-top: -50px;
}

.about p {
  display: inline-block;
  max-width: 900px;
  padding: 5px;
  font-size: 16px;
  line-height: 40px;
  align-items: center;
}

#myVideo {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

#myBtn {
  display: block;
  width: 200px;
  font-size: 18px;
  padding: 10px;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 60px;
  text-align: center;
  align-self: center;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

/* End About Us Page */



/* Locations Page */

.locations {
  display: inline-block;
  max-width: 900px;
  padding-bottom: 50px;
}

.locations p {
  padding: 20px;
  font-size: 20px;
}

/* End Locations Page */



/* Contact Page */

.contact {
  display: inline-block;
  width: 600px;
  text-align: center;
}

.contact p {
  margin-bottom: 60px;
}

form#contactForm {
  margin: 0;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: black;
  color: white;
  padding: 20px 50px;
  margin-bottom: 30px;
  font-size: 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s;
}

input[type=submit]:hover {
  background-color: rgb(58, 58, 58);
}

/* End Contact Page */



/* Bread Images */

.row {
  width: 100%;
  padding-bottom: 70px;
}

figure {
  display: inline-block;
}

.col {
  display: inline-block;
  margin: 25px 50px;
  overflow: hidden;
  box-shadow: grey 5px 5px 5px 0px;
  border-radius: 50%;
}

.bread7 {
  background-image: url(images/bread7.jpg);
  background-size: 350px;
  background-repeat: none;
  background-position: center;
}

.bread8 {
  background-image: url(images/bread8.jpg);
  background-size: 500px;
  background-repeat: none;
  background-position: center;
}

.bread9 {
  background-image: url(images/bread9.jpg);
  background-size: 500px;
  background-repeat: none;
  background-position: center;
}

.image {
  height: 300px;
  width: 300px;
  background-size: cover;
  background-position: center;
  transition: all .6s;
  -o-transition: all .6s;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
}

.image:hover {
  transform: scale(1.5);
  -o-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  cursor: pointer;
}

/* End Bread Images */



/* Pamphlet Image */

.col2 {
    display: inline-block;
    margin: 25px 50px;
    overflow: hidden;
    box-shadow: grey 5px 5px 5px 0px;
    border-radius: 0;
}

.image2 {
  height: 300px;
  width: 300px;
  background-size: cover;
  background-position: center;
  transition: all .6s;
  border-radius: 0;
  -o-transition: all .6s;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
}

.image2:hover {
  transform: scale(1.5);
  -o-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  cursor: pointer;
}

.pamphlet {
  background-image: url(images/Bread-on-Bread-pamphlet.png);
  background-size: 500px;
  background-repeat: none;
  background-position: center;
  border-radius: 0;
}

/* End Pamplet Image */



/* Catering Portion Above Footer */

.catering {
  border-top: black solid 5px;
  text-align: center;
  background-image: url(images/bread5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 200em;
  background-attachment: fixed;
}

.catering h1 {
  padding: 50px;
  font-weight: 100;
  font-size: 4em;
}

.catering_card {
  background-color: rgba(0, 0, 0, .5);
}

.catering_card h2 {
  padding: 40px;
  font-weight: 100;
}

.catering_card p {
  padding: 20px;
}

#caterBtn {
  margin: 30px;
  padding: 30px 100px;
  border-radius: 50px;
  border: none;
  font-size: 1.5rem;
  color:rgb(58, 58, 58);
  transition: all .3s;
}

#caterBtn:hover {
  background-color: black;
  color: white;
  border-color: white;
  cursor: pointer;
}

/* End Catering Portion Above Footer */



/* Footer */

footer {
  background: black;
  color: gray;
  font-size: 12px;
  padding: 60px 20px;
  text-align: center;
}

footer a {
  font-size: 16px;
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.links {
  margin-bottom: 20px;
}

.links ul li {
  list-style-type: none;
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
}

.social {
  margin: 50px;
  font-size: 14px;
}

.social ul li {
  list-style-type: none;
  padding: 10px;
  display: inline-block;
}

/* End Footer */


/* Start Media Query */
@media (max-width: 960px) {
  header .logo a {
    background-size: 200px;
    width: 200px;
    height: 200px;
  }

  nav ul li a {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 25px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero li {
    font-size: 18px;
  }

  p {
    max-width: 600px;
    margin: auto;
  }

  .about p {
    max-width: 600px;
  }
}

@media (max-width: 680px) {
  p {
    max-width: 400px;
  }

  .about p {
    max-width: 400px;
  }

  .hero iframe {
    width: 400px;
  }

  .contact label {
    display: block;
  }

  .contact input {
    width: 400px;
  }

  .contact textarea {
    width: 400px;
  }

  input[type=submit] {
    display: block;
    margin: auto;
    margin-bottom: 20px;
  }

  .contact p {
    margin: auto;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .menu-button-container {
    display: inline-block;
    padding-top: 30px;
  }

  .menu {
    margin: 0;
    padding: 0;
    position: relative;
    margin-top: 30px;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 4em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu li {
    display: block;
    align-content: center;
    text-align: center;
    margin: auto;
    padding: 0;
    width: 100%;
    color: white;
    background-color: #222;
  }

  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}

@media (max-width: 600px) {
  header .logo a {
    margin-top: 20px;
  }

  .image {
    height: 200px;
    width: 200px;
  }

  .catering h1 {
    font-size: 30px;
    padding: 20px;
  }

  .catering h2 {
    font-size: 18px;
    padding: 20px;
  }

  .catering p {
    font-size: 16px;
    padding: 12px;
  }

  #caterBtn {
    margin: 20px;
    padding: 20px 60px;
  }

  p {
    font-size: 16px;
  }

  .contact {
    max-width: 300px;
    min-width: 200px;
  }

  #contactForm {
    width: 300px;
    margin: 0;
  }

  .contact label {
    width: 300px;
    margin: 0;
    text-align: center;
  }

  .contact input {
    width: 300px;
  }

  .contact textarea { 
    width: 300px;
  }
}

@media (max-width: 500px) {
  header {
    background-size: 600px;
  }

  p {
    font-size: 14px;
  }

  .about p {
    font-size: 14px;
    max-width: 400px;
    min-width: 200px
  }

  .hero iframe {
    max-width: 300px;
    min-width: 150px;
    height: 200px;
  }

  .contact {
    width: 300px;
    display: block;
    margin: auto;
  }

  #contactForm {
    margin: 0;
  }

  .contact label {
    margin: 0;
    text-align: center;
  }

  .contact input {
    width: 200px;
  }

  .contact textarea { 
    width: 200px;
  }

  .bread-menu ul li {
    font-size: 14px;
  }

  .locations p {
    font-size: 14px;
  }
}