@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css?family=La+Belle+Aurore|Open+Sans');


:root{
  --brightYellow: #E3B505;
  --darkBrown: #BB9457;
  --yellow:rgb(242, 180, 80);
  --brown: #382923;
  --black: #191919;
  --grey: #A9B2AC;
  --red: rgb(230, 21, 27);
  --green: rgb(40, 214, 73);
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Open Sans', 'sans-serif';
  background: linear-gradient(rgba(255,255,255,0.85),rgba(255,255,255,0.85)),url('../img/bodyBcg.jpg');
  color: var(--black);
}

/* Global Styles */
.bell-fonts{
  font-size: 9rem;
  font-family: 'La Belle Aurore', cursive;
}

.small-bell-fonts{
  font-size: 2rem;
  font-family: 'La Belle Aurore', cursive;
}

/* Section Padding */
.section-padding{
  padding: 3rem 0;
}

@media screen and (min-width:1600px){
  .section-padding-our-story{
    padding-top: 10rem;
  }
}

/* Grid Container */
.grid-container{
  max-width: 90vw;
  margin: 2rem auto;
  display: grid;
  grid-row-gap: 2rem;
}

@media screen and (min-width:768px){
  .grid-container--medium-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 4rem;
  }

  .grid-container{
    max-width: 75vw;
  }
}

/* Section */
.section-title{
  padding: 1rem 0.5rem;
}

.section-title--left{
  margin-left: 10rem;
}

.section-title__name{
  font-size: 6rem;
  text-transform: capitalize;
}

.section-title__underline{
  background: var(--yellow);
  width: 5rem;
  height: 0.25rem;
}

.section-title__text{
  letter-spacing: 0.1rem;
  line-height: 1.5rem;
  margin-top: 1rem;
}

/* End - Global Styles */

/* Preloader */
.preloader{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--brightYellow);
  z-index: 999;
  display: grid;
  justify-content: center;
  align-items: center;
}

/* Header */
.header{
  background-image: url("../assets/banner.jpg");
  height: 100vh;
  display: grid;
  grid-template-columns: 80%;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: cover;
  
}

@media screen and (max-width:768px){
  .header{
    background: url('../assets/banner.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
}

/* Banner */
.banner{
  text-align: center;
  z-index: 3;
}


.banner__title{
  font-size: 4rem;
  text-transform: capitalize;
  color: #b54317;
}

.small-banner__title{
  font-size: 2rem;
  text-transform: capitalize;
  color: #b54317;
}

@media screen and (min-width:768px){
  .banner__title{
    font-size: 4rem;
  }
}

.banner__social-icon{
  display: block;
  text-decoration: none;
  color: var(--black);
  border: 0.1rem solid var(--black);
  border-radius: 50%;
  padding: 0.25rem;
  transition: all 0.5s linear;
}

.banner__social-icon:hover{
  background: var(--brightYellow);
  color: var(--black);
}

.banner__icons{
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 2rem);
  grid-column-gap: 0.5rem;
}

/* Video */
.video__container{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video__item{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Nav Button */
.navBtn{
  position: fixed;
  top: 5%;
  right: 5%;
  font-size: 3.5rem;
  color: var(--yellow);
  cursor: pointer;
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: 5;
  z-index: 5;
}

/* Nav Btn Animation */
@keyframes pulse{
  0%{
    tranform: scale(1)
  }
  50%{
    transform: scale(1.5)
  }
  100%{
    transform: scale(1)
  }
}

/* Nav */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 10rem;
  background: rgba(242,180,80,0.9);
  z-index: 3;
}

.nav__links{
  list-style-type: none;
}

.nav__logo{
  padding: 0.25rem 0.25rem;
}

.nav__logo img{
  height: 4rem;
}

.nav__links .nav__logo:hover{
  background: var(--grey);
  color: rgba(242,180,80,0.9);
  padding-left: 1.5rem;
}

.nav__single-link{
  display: block;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--brown);
  font-size: 2rem;
  padding: 0.5rem 1rem;
  transition: all 0.5s ease-in-out;
}

.nav__single-link:hover{
  background: var(--brown);
  color: rgba(242,180,80,0.9);
  padding-left: 1.5rem;
}

/* Nav Animation */
.nav{
  width: 0;
  overflow: hidden;
  transition: all 0.5s linear;
}

.nav--show{
  width: 15rem;
}

/* Video Switch */
.video__switch-container{
  display: none;
}

@media screen and (min-width:768px){
  .video__switch-container{
    display: block;
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 3;
  }

  .video__switch{
    position: relative;
    width: 5rem;
    background: var(--yellow);
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    padding: 0.25rem;
    cursor: pointer;
    border-radius: 0.5rem;
  }

  .video__switch-btn{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: var(--brown);
    border-radius: 0.5rem;
    transition: all 0.3s ease-out;
  }

  .btnSlide{
    left: 50%;
  }
}

/* About */
.about-container{
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr;
  grid-gap: 2rem;
}

.about__img-item{
  height: 80%;
  width: 80%;
  border-radius: 10%;
  display: block;
  border: 5px solid #555;
}

.about__img-item-det{
  height: 100%;
  width: 100%;
  border-radius: 10%;
  display: block;
  border: 5px solid #555;
}

@media screen and (min-width:768px){
  .about__img-special{
    order: -1;
  }

  .about-container{
    grid-template-rows: 1fr;
  }
}

/* Drink */
.drink{
  background: var(--brown);
  color: var(--brightYellow);
  text-transform: capitalize;
}

.drink-form, .drink-card{
  text-align: center;
  display: grid;
  grid-template-columns: 70%;
  justify-content: center;
  grid-row-gap: 1.25rem;
}

.drink-form__feedback{
  border: 0.1rem solid var(--brightYellow);
  padding: 0.25rem;
  display: none;
}

.error{
  display: block;
  color: var(--red);
  border-color: var(--red);
}

.success{
  display: block;
  color: var(--green);
  border-color: var(--green);
}

.drink-form__title, .drink-card__title{
  font-size: 3rem;
}

.input-name, .input-lastname, .input-email{
  width: 100%;
}

.input-name, .input-lastname, .input-email, .input-submit{
  font-size: 1rem;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: rgba(111,87,77,0.6);
  color: var(--darkBrown);
  border: none;
  outline: none;
}

.input-name::placeholder, .input-lastname::placeholder, .input-email::placeholder{
  color: var(--darkBrown);
  text-transform: capitalize;
}

.input-submit{
  background: var(--yellow);
  color: var(--black);
  transition: all 0.5s linear;
  cursor: pointer;
  text-transform: uppercase;
}

.input-submit:hover{
  opacity: 0.8;
}

.drink-card__list{
  display: grid;
  grid-template-columns: 100%;
  grid-row-gap: 2rem;
}

.person{
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  text-align: left;
  grid-gap: 1rem;
  border: 0.1rem solid rgba(111,87,77,0.6);
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
}

.person__thumbnail{
  border-radius: 50%;
  height: 5rem;
}

@media screen and (min-width:768px){
  .drink-card__list{
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
  }
}

/* Our Work */
.work-container{
  max-width: 90vw;
  margin: 2rem auto;
}

.work-item__img{
  width: 100%;
  height: 100%;
  display: block;
  transition: all 1s linear;
}

.work-item{
  background: linear-gradient(var(--yellow), var(--yellow));
  overflow: hidden;
  position: relative;
}

.work-item:hover .work-item__img{
  opacity: 0.5;
  transform: scale(1.2);
}

.work-item__icon{
  position: absolute;
  color: var(--brightYellow);
  top: 50%;
  left: 50%;
  display: inline-block;
  font-size: 4rem;
  text-decoration: none;
  transition: all 0.5 ease;
  transform: scale(0);
  z-index: 2;
}

.work-item:hover .work-item__icon{
  transform: scale(1.3) translate(-50%,-50%);
}

.work-item__icon:hover{
  color: var(--brown);
  cursor: pointer;
}

@media screen and (min-width:576px){
  .work-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
  }
}

@media screen and (min-width:992px){
  .work-container{
    height: 120vh;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-template-areas:
    "one one two three"
    "one one four five"
    "six seven eight eight"
    "nine ten eight eight"
  }

  .item-1{
    grid-area: one;
  }
  .item-2{
    grid-area: two;
  }
  .item-3{
    grid-area: three;
  }
  .item-4{
    grid-area: four;
  }
  .item-5{
    grid-area: five;
  }
  .item-6{
    grid-area: six;
  }
  .item-7{
    grid-area: seven;
  }
  .item-8{
    grid-area: eight;
  }
  .item-9{
    grid-area: nine;
  }
  .item-10{
    grid-area: ten;
  }
}

/* Modal */
.work-modal{
  display: none;
}

.work-modal--show{
  position: fixed;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: grid;
  justify-content: center;
  align-items: center;
}

.work-modal__item{
  background: url(../img/work-1.jpg)center/cover;
  height: 70vh;
  width: 60vw;
  border: 0.25rem solid var(--yellow);
  border-radius: 0.4rem;
}

@media screen and (max-width:768px){
  .work-modal__item{
    height: 40vh;
    width: 60vw;
  }
}

.work-modal__close{
  position: fixed;
  font-size: 3rem;
  color: var(--brightYellow);
  bottom: 5%;
  right: 5%;
  transition: color 0.5s linear;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.work-modal__close:hover{
  color: red;
}

/* Contact */
.contact-container {
  max-width: 90vw;
  margin: 0 auto;
  display: grid;
  grid-row-gap: 1rem;
}

.contact-info{
  display: grid;
  justify-content: center;
}

.contact-item{
  margin: 1rem 0;
  padding: 0.5rem;
}

.contact-item__icon{
  font-size: 3rem;
  color: var(--yellow);
}

.contact-item__title{
  text-transform: uppercase;
  margin: 0.5rem 0;
  letter-spacing: 0.25rem;
  font-style: italic;
}

.contact-item__text{
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--grey);
}

@media screen and (min-width: 768px){
  .contact-info{
    grid-template-columns: repeat(3, 1fr);
    order: -1;
  }
}

@media screen and (min-width: 992px){
  .contact-info{
    grid-template-columns: 1fr;
    order: 0;
  }

  .contact-container{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 2rem;
  }

  .contact-map{
    align-self: center;
  }
}

/* Break */

.section1 {
  overflow: hidden;
  margin-left: -10%;
  margin-right: -10%;
}

/*Section 4 Styles*/
  
  .section4 {
      margin-left: -10%;
      margin-right: -10%;
      text-align: center;
      background-image: url("../assets/backgrounds/foodsBg.jpg");
      background-size: cover;
      background-attachment: scroll;
      background-clip: border-box;
      background-position: center;
      background-repeat: no-repeat;
      padding: 70px;
  }
  
  .nav-list {
      width: 80%;
      margin: auto;
  }
  
  .nav-tabs {
      background-color: lightgrey;
      font-size: 16px;
  }
  
  .nav-tabs>.active {
      background-color: white;
      border-bottom: 0;
  }
  
  .nav-tabs li {
      border-right: 1px solid #777;
      border-bottom: 1px solid #777;
  }
  
  a {
      color: black;
  }
  
  .nav-tabs>li.active>a,
  .nav-tabs>li.active>a:hover,
  .nav-tabs>li.active>a:focus {
      color: #f15a19;
  }
  
  .tab-content {
      background-color: white;
  }
  
  .carousel-inner {
      padding: 25px;
  }
  
  .item {
      float: left;
      margin: 10px;
  }
  
  .carousel-control {
      opacity: 1;
      color: #f15a19;
  }
  
  .carousel-control.left,
  .carousel-control.right {
      background-image: none;
  }
  /* Section 5 Styles*/
  
  .section5>.row {
      width: 80%;
      margin: 50px auto;
      border: 2px solid #ddd;
      box-shadow: 0px 0px 5px lightgrey;
      padding: 40px;
  }
  
  .customers {
      margin: auto;
      text-align: center;
      padding: 20px;
  }
  
  .customers>h4 {
      color: #f15a29;
      font-weight: bold;
  }
  
  .carousel-inner>.item>img {
      margin: auto;
  }
  
  #testimonials .carousel-inner {
      padding: 0px;
  }
  
  .carousel-indicators {
      display: none;
  }
  
  .item h5 {
      margin-top: 1px;
  }
  /* Styles for customer testimonials carousel*/
  
  .carousel-inner .item.left.active {
      transform: translateX(-33%);
  }
  
  .carousel-inner .item.right.active {
      transform: translateX(33%);
  }
  
  .carousel-inner .item.next {
      transform: translateX(33%)
  }
  
  .carousel-inner .item.prev {
      transform: translateX(-33%)
  }
  
  .carousel-inner .item.right,
  .carousel-inner .item.left {
      transform: translateX(0);
  }
  
  .about {
      padding: 20px;
      text-align: center;
      border-left: 2px solid #ddd;
  }
  
  .about>h4 {
      color: #f15a29;
      font-weight: bold;
  }

  .logo {
    padding: 150px;
    z-index: 1;
    text-align: center;
    color: white;
    font-size: 20px;
  }

  .rounded {
    border-radius: 40%;
  }

  .customcolor {
    color:#e82121
  }