@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);
@font-face {
    font-family: 'MexicanTequilaFont';
    src: url(fonts/MexicanTequila-Italic.ttf);
}

@font-face {
    font-family: 'MilhoMexicano';
    src: url(fonts/MilhoMexicano.ttf);
}

*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}
.navbar{
  position: fixed;
  background-color: transparent;
  width: 100%;
  padding: 90px 0;
  top: 0;
  z-index: 100;
  line-height: 20px;
}
.inner-width{
  max-width: 1300px;
  margin: auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo{
  font-size: 63px;
  font-weight: 100;
  font-family: 'MexicanTequilaFont',sans-serif;
  color: #25530afb;
  cursor: pointer;
}
.navbar-menu a:active,
.navbar-menu a:focus,
.navbar-menu a:visited {
  color: #aa1818;
  text-decoration: underline;
}
.navbar-menu a{
  font-size: 20px;
  font-weight: 500;
  font-family: 'MilhoMexicano',sans-serif;
  color: #aa1818;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 35px;
  display: inline-block;
}
.navbar-menu a::after{
  content: '';
  display: block;
  width: 0;
  height: 1.8px;
  background-color: #de6900;
  transition: width .3s;
}
.navbar-menu a:hover::after{
  width: 100%;
}
#home{
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #222222;
  background-color: #f8f2e7;
  padding: 0 100px;
}
.content1{
    display: flex;
    flex-direction: column;
    padding-top: 170px;
    margin-left: 190px; /* add this line to move the image to the right */
  }
.title h1{
  font-size: 45px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
}
.image{
  background-image: url(img1.png);
  background-position: center;
  background-size: cover;
  width: 370px;
  height: 270px;
  margin-top: 40px;
}
.image2 {
    background-image: url(review2.png);
    background-position: center bottom;
    background-size: cover;
    width: 555px;
    height: 25%;
    margin-top: 45px; /* Add some space between the two images */
  }
.content2{
  display: flex;
  flex-direction: column;
  padding-top: 170px;
  padding-left: 20px;
}
.content2 .image{
    background-image: url(img2.png);
    background-position: center bottom;
    background-size: cover;
    width: 500px;
    height: 60%;
    margin-top: 40px;
  }
.title p{
  margin-bottom: 0;
  margin-top: 33px;
  font-size: 14px;
  font-family: 'Raleway',sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 25px;
}
.content2 button{
  padding: 14px 27px;
  margin-top: 30px;
  margin-left: 200px; /* add this line to move the button to the left */
  background-color: #de6900;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Raleway',sans-serif;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
}
.social-container{
  position: absolute;
  right: 55px;
  bottom: 30%;
}
.social-icons{
  list-style: none;
  position: relative;
}
.social-icons li{
  margin: 35px 0;
}
.social-icons li i{
  color: #222222;
  font-size: 20px;
}
.social-icons li a:hover i{
  transform: scale(1.5);
  color: #de6900;
  transition: all .2s ease-in-out;
}
.social-icons::before{
  content: '';
  position: absolute;
  display: block;
  width: 1px;
  height: 190px;
  top: -210px;
  left: 8px;
  background-color: #de6900;
}
.social-icons::after{
  content: '';
  position: absolute;
  display: block;
  width: 1px;
  height: 190px;
  bottom: -210px;
  left: 8px;
  background-color: #de6900;
}
body {
  border: 20px solid #25530afb;
  background-color: #f8f2e7;
  height: 105vh; /* Set height to full viewport height */
}
  #about .content {
    text-align: center;
    margin-top: 80px;
    background-color: #f8f2e7;
  }
  
  #about .image {
    background-image: url('intro.PNG');
    background-size: cover;
    width: 1000px;
    height: 700px;
    display: inline-block;
    margin-top: 90px;
  }
  
  #about p {
    max-width: 500px;
    margin-top: 50px;
    font-size: 18px;
    line-height: 1.5;
    background-color: #f8f2e7;
  }
  .bio {
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
    letter-spacing: 1px;
    background-color: #f8f2e7;
  }


  


  #snacks .content {
    text-align: center;
    margin-top: 100px;
    background-color: #f8f2e7;
    display: flex;
    justify-content: center;
  }
  
  .snacks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .snacks-item {
    display: inline-block;
    width: 200px;
    margin: 100px;
    text-align: center;
  }
  
  .snacks-item img {
    object-fit: cover;
    border-radius: 10px;
    width: 300px;
    height: 200px; /* Change this to your preferred height */
  }
  
  .snacks-item-info {
    margin-top: 10px;
  }
  
  .snacks-item-price {
    font-weight: bold;
    font-size: 20px;
  }
  
  .snacks-item-desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
  }











 /* Slideshow container */
.slideshow-container {
  max-width: 400px;
  position: relative;
  margin: auto;
  top: 90%;
  transform: translateY(-50%);
}


/* Hide the images by default */
.mySlides {
  display: none;
  margin-top: 400px;
}

/* Next and previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: 22px;
  padding: 6px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  margin-top: 2px;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}






.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.image-container {
  text-align: center;
}

.image-container img {
  max-width: 80%;
  height: auto;
}

.button {
  display: inline-block;
  background-color: #de6900;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 5px;
  margin-top: 10px;
  text-decoration: none;
  position: relative;
  left: -40%;
}
