.hidden{
   display:none;
}

/*general styles*/
header .grid-con {
  background-color: #9D2F56;
}
body, button, a, input{
   font-family: 'Comfortaa', sans-serif;
   font-weight: 400;
   
 }

 img, embed, object, video, picture{
    max-width:100%;

 }
 nav {
  display: inline-block;
  background-color: #C4D682;
 }

  h1, h2, h3, h4, h5{
   font-family: 'Concert One', sans-serif;
   font-weight: 400;
   color:#9D2F56;
 }
 h1{
  font-size: 32pt;
 }
 h2{
  font-size: 30pt;

 }
 h3{ 
  font-size: 28pt;
 }
 h4{
  font-size: 26pt;

 }
 h5{
  font-size:24pt;
 }
 p{
  font-size: 18pt;
 }
 a {
    text-decoration: none;
   font-family: 'Comfortaa', sans-serif;
    transition:all .5s ease-in-out;
    font-size: 14pt;

 }
 input,textarea{
    display: block;
    margin:0px;
    padding:0px;
 }



/*--- promotion ---*/
 #promotion {
  background-color: #F4C02E;
  text-align: center;
  padding: 0px;
}

#promotion p {
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  animation: fade-in 1s ease-in-out;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
 
/*--- promotion end ---*/


/*--- header ---*/

.logo{
  height: 150px;
  width: 400px;


}
header {
  background-color: #9D2F56;
  padding: 0px;
}

header img {
  display: block;
  width: 100%;
  max-width: 200px; /* Adjust the size as needed */
  height: auto;
  cursor: pointer;
}

header a  {
  display: inline-block;
  margin-right: 0px;
  color: white;
  font-size: 16pt;
}

header a:hover img {
  opacity: 0.8;
}
header a img{
display: block; 
width:50px;
height:50px;
}

header button{
  background-color: #9D2F56;
  border:solid #9D2F56;
  }
/*hamburger*/


#menuToggle
{
  display: block;
  position: relative;
  top: 50px;
  left: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: white;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  opacity: 0.7;
}


#menuToggle input
  {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/* makes the lines*/
#menuToggle span
{
  display: block;
  width: 40px;
  height: 7px;
  margin-bottom: 5px;
  position: relative;
  
  background: white;
  border-radius: 1px;
  
  z-index: 1;
  
  transform-origin: 2px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the lines of hamburger
 * into an x.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: white;
}

/*to hide the middle line.*/
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * last line in other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu-tablet{
  display: block;
  position:absolute;
  min-width:768px;
 max-width:1155px;
 height:800px;
  margin: -100px 0 0px -50px;
  padding-left: 50px;
  padding-bottom: 50px;
  padding-right: 50px;
  padding-top: 125px;
  background: #F89B3E;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu-mobile{
  display: block;
  position:absolute;
  width:475px;
  height: 800px;
   margin: -100px 0 0 -50px;
   padding: 50px;
   padding-top: 125px;
   background: #F89B3E;
   list-style-type: none;
   -webkit-font-smoothing: antialiased;
   /* to stop flickering of text */
   
   transform-origin: 0% 0%;
   transform: translate(-100%, 0);
   
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
 }




#menu-tablet li a
{
  padding: 25px 400px;
  font-size: 24px;
}
#menu-mobile li a
{
  padding: 15px 120px;
  font-size: 24px;
}


/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul{
  transform: none;
}
/*end of burger*/
nav{
  display:block;
  padding: 0px;
  background-color: #9D2F56;

}
ul{
  list-style-type: none;
  margin:0;
  padding: 0;


}
nav li a{
  font-size: 16pt;
display: block;
text-align: center;
text-decoration: none;
transition: 0.2s;


}
 
nav a:hover{
  opacity: 0.7;
}
li{
  padding-left: 20px;
  padding-right: 20px;
float:left
}
/*--- header end ---*/



/*---hero section--- */
.hero {
  background-image: url("../img/hero-home-desktop.jpg");
  background-size: cover;
  background-position: center;
  height:823px;
  margin-top:0px;
}
.col-span-4 .hero {
  background-image: url("../img/header-img.jpg");
  background-size: cover;
  background-position: center;
  height:310px;
}

.hero-content {
  color: black; 
  padding-top: 100px;
}

.button {
  display: inline-block;
  background-color: #F79028; 
  color: #ffffff; 
  padding: 10px 20px;
  text-decoration: none;
  border-radius:20px;
}


/*---hero section end--- */



.branding-promises {
  background-color: #8DC63F; 
  padding: 0px;
  justify-content: space-around;
}

#banner{
  color: white;
  justify-content: space-around;
  text-align: justify;
  display: flex;
  
}
#banner  ul li {
 display:block;
 list-style:none;
 padding-right: 20px;
 padding-left: 20px;
 color: white;
 text-align: center;
 justify-content: space-around;
}

  /*about*/

.about {
  padding: 20px;
}

.about-content-desktop {
  display:block;
  
  
}

.about-image img {
  display: inline-block;
 width:600px;
 border-color: #FBA327;
 border-width: 20px;
 border-radius: 15%;
 margin-left:15px;


}

.about-icons {
  display: flex;
  justify-content:space-between;
  margin-top: 20px;
  color: #9D2F56;
  
}

.about-icon {
  width: 60px;
  height: 60px; }

.learn-more{
  text-decoration: underline;
  font-size: 16pt;
  color: #9D2F56;
  font-weight: 600;
}

/*product images*/
.productimage-1 {
  background-size: cover;
  background-position: center;
  background-color: #F4C02E;

}
/*Carousel*/
#game-boards {
    text-align: center;
    display: flex;
    flex-direction: row;
    max-width: 900px;
    margin: 0 auto;
  }

.puzzle-pieces, .puzzle-board {
	margin-top: 40px;
	height: 400px;
	border: medium solid #333;
	background-color: #000;
	color: inherit;
	overflow: hidden;
}

.puzzle-pieces {
	width: 300px;
	margin-right: 20px;
	display: flex;
	flex-direction: column;
}

.puzzle-board { 
	width:650px; 
	background-image: url('/img/quatroCan0.png');
  background-repeat: no-repeat;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 65px;
  height: 800px;

}
#buttonHolder {
	margin: 0px auto;
	text-align:center;
}

#buttonHolder img {
	margin-left: 5px;
	margin-right: 5px;
	border-radius: 20px;
	border: thin solid #333;
	cursor: pointer;
  height: 50px;
  width:50px;
  display: inline-block;
}

#buttonHolder img:hover {
	opacity:.5;
}
/*video*/


/* review*/
.review{
  background-color: #EB6763;
  color: #fff;
  font-size: 26pt;
  border-radius: 20px;
  padding-top:100px;
  padding-bottom: 100px;
  padding-left: 100px;

}
.review p{
font-size: 30pt;
text-align: left;
}
.review img{
  width:400px;
  display: block;
  padding-bottom: 40px;
}
div .shop-button{
width:250px;
text-decoration: none;
color: #EB6763;

}
.review .shop-button{
  background-color: white;
  color:#F5C569;
  border-color: transparent;
  font-size: 30pt;
  display: block;
  padding-top:20px;
  padding-bottom:20px;
  border-radius: 50px;
  padding-left:15px;
  padding-right:15px;
  text-decoration: none;
  cursor: pointer;
}
.review .shop-button a{
text-decoration: none;
color: #EB6763;
}
#reviewer p{
  color: white;
  font-size: 16pt;
  text-align: center;

  
}

/*cans*/
/*.can-1 {
background-size: cover;
background-position: center;
background-color:#9D2F56;
}

.can-2 {
  background-size: cover;
  background-position: center;
  background-color: #F47723 ; 
  padding-top: 45px;
  }
  
.can-3 {
  background-size: cover;
  background-position: center;
  background-color: #EB6763; 
  padding-top:50px;
  
  }*/  
 
  
/*recipes*/
.title {
  padding-top: 10px;
  
}

.recipe-1{
  background-size: cover;
  background-position: center;
  background-color: #FFF07B; 
  }
  .recipe-1:hover{
    color:#FFBE7C;
  }
  .recipe-2{
     background-size: cover;
     background-position: center;
     background-color: #FFF07B; 
     }
     .recipe-2:hover{
      color:#FFBE7C

    }

  .recipe-3{
     background-size: cover;
     background-position: center;
     background-color: #FFF07B;

        }

        .recipe-3:hover{
          color:#FFBE7C;
        }

        
/*Newsletter*/
div .newsletter .tablet {
  background-color:#F2A01F;
  
}
.newsletter{
  background-color: #F2A01F;
}
div .newsletter p h3{
  text-align: left;
}
.newsletter .form-inline input {
font-size: 20pt;
border-radius: 30px;
border-color: transparent;
padding-top: 20px;
padding-bottom:20px;
padding-left: 10px;
padding-right: 150px;
display: block;
margin-right:none;
}
.newsletter .form-inline #email{
  background-color:#EE753A;
  font-size: 20pt;


}
.newsletter .form-inline button {
 font-size: 20pt;
border-radius: 30px;
border-color: transparent;
background-color: #F4C02E;
display:block;

}
footer #email {
  display: inline-block;
  padding: 10px 20px;

}

/*footercontent*/
footer{
  background-color:#9D2F56;
  color:white
  }
  footer a{
    text-decoration: none;
    background-color: #EE753A;
    padding-left: 50px;
    padding-right: 50px;
    padding-top:20px;
    padding-bottom: 20px;
    border-color: #EE753A;
    color:white;
    border-radius: 30px;
    font-size: 20pt;
    font-family: 'Comfortaa', sans-serif;
  }
  footer p{
    font-size:30pt;
  }
  
  footer form .form-inline{
    align-items: center;
    padding-top: 50px;
   
  }
  
  footer .form-inline input{
  font-size: 25pt;
  color: white;
  background-color: #9D2F56;
  border-top:transparent;
  border-left: transparent;
  border-right: transparent;
  border-bottom: solid white;
  padding-right:100px;
  }
  footer .form-inline #email{
    background-color: #9D2F56;
  
  }
  footer .form-inline button{
    font-size: 25pt;
    background: transparent;
    border-color: transparent;
    cursor: pointer;
   
  }
  #copyright{
    margin-left: 100px;
    font-size: 16pt;
  }

button{
  display: inline-block;
  background-color: #ff0000; 
  color: #ffffff; 
  padding: 10px 20px;
  text-decoration: none;
}

/*Shop*/
.hero-shop-mobile{
  background-image:url("/img/hero-shop-mobile.jpg");
  background-size:cover;
  background-position: center;
 height: 400px;}

.hero-shop{
background-image:url("/img/hero-shop-desktop.png");
background-size: cover;
background-position: center;  
height: 800px;
background-color: #FFBE7C;
}
.products h3 {
  color:#8DC63F;

}
.products p {
  color:#9D2F56;
  font-family: 'Comfortaa', sans-serif;

}

.cart-cont {
  display: flex;
  align-items: center;
  margin-left: 160px;
  
}

.minus-btn, .plus-btn {
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  background-color: #8DC63F;
  border-color: #8DC63F;
  padding-bottom: 10px;
  border-radius: 15%;
  
  

}

.item-count {
  margin: 0 10px;
}

.add-to-cart-btn {
  height: 40px;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
  background-color: #8DC63F;
  margin-left: 15px;
  border-color: #8DC63F;
  border-radius: 15%;
  
}
/*recipe page*/

.recipe-hero-mobile{ background-image: url("/img/hero-recipes-mobile\ 1.jpg");
  background-size:cover;
  background-position: center;
  height:400px;}

.recipe-hero{  background-image: url("/img/hero-recipes-desktop.jpg");
  background-size:cover;
  background-position: center;
 height: 800px;}

.mobile-text-align{
  text-align: left;
  display: block;
}
 .mobile-text-align h2 p {
  text-align:left;
  display: block;
 }


/*about page*/
.about-hero  {
  background-image: url("/img/hero-aboutus-desktop.jpg");
  background-size:cover;
  background-position: center;
 height: 800px;
 background-color: #FFBE7C;
}

.about-hero-mobile{
  background-image: url("/img/hero-aboutus-mobile-2.jpg");
  background-size:cover;
  background-position: center;
  height:400px;
}

.about-hero-text{
padding-top: 60px;
}

.the-about-images img {
  border-radius: 15%;
  padding-top: 20px;
}


/* carousel */

.carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  margin: auto;
}


.carousel-item {
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
}


.carousel-content {
  margin-top: 50px;
  flex: 1;
  padding: 20px;
  color: #ffffff;;
  text-align: left;
}

/* Adjust text styles */
.carousel-title {
  font-size: 36px;
  font-family: 'Concert One', sans-serif;
  margin-bottom: 5px;
  text-align: left;
  color: #ffffff;
}

.carousel-subtitle {
  font-size: 18px;
  text-align: left;
  color: #ffffff;
}

.carousel-paragraph {
  font-size: 20px;
  margin-bottom: 15px;
}

.carousel-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Concert One', sans-serif;
  transition: background-color 0.3s;
}

/* Add specific button colors for each flavor */
.orange-flavour .carousel-button {
  background-color: white;
  color: #F47723;
}

.orange-flavour{
  background-color: #F47723;
}
.passionfruit-flavour .carousel-button {
  background-color:white;
  color: #B52F51;
}

.passionfruit-flavour{
  background-color: #B52F51;
}

.grapefruit-flavour .carousel-button {
  background-color:white;
  color: #EB6763;
}

.grapefruit-flavour{
  background-color: #EB6763;
}

.pineapple-flavour .carousel-button {
  background-color:white;
  color: #F4C02E;
}

.pineapple-flavour{
  background-color: #F4C02E;
}

/* Adjust image styles */
.carousel img {
  flex-shrink: 0;
  border-radius: 10px;
  height: 300px; /* Set a fixed height */
  object-fit: cover; /* Maintain aspect ratio and crop if necessary */
  margin-right: 20px;
  align-items: center;
}


/* Apply carousel effect */
.carousel:hover .carousel-item:not(:hover) {
  transform: scale(0.8);
}