/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*===== SCROLL =====*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgb(230, 230, 230);
  
}

::-webkit-scrollbar-thumb {
  background: #3aa12c;
  border-radius: 10px;
}

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --first-color: #3aa12c;
  --first-color-alt: #048654;
  --title-color: #393939;
  --text-color: #707070;
  --text-color-light: #A6A6A6;
  --body-color: #FBFEFD;
  --container-color: #FFFFFF;
  
  --nav-color: #021a1218;

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes ==========*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 767px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== BASE ==========*/
*,::before,::after{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --title-color: #F1F3F2;
  --text-color: #C7D1CC;
  --body-color: #1D2521;
  --container-color: #27302C;
  --menu-color: #202c27;
}

/*========== Button Dark/Light ==========*/
.change-theme {
  position: absolute;
  right: 1rem;
  top: 1.8rem;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,h2,h3,p,ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*========== CLASS CSS ==========*/
.section {
  padding: 4rem 0 2rem;
}

.section-title, .section-subtitle {
  text-align: center;
}

.section-title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}

.section-subtitle {
  display: block;
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

/*========== LAYOUT ==========*/
.bd-container {
  max-width: 960px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid {
  display: grid;
  gap: 1.5rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  /* background-color: #031604a8; */
  backdrop-filter: blur(1rem);
  background-color: var(--nav-color);
}

#logo-menu {
  /* position: absolute; */
  display: block;
  width: 55px;
  right: 0px; 
                        

  
}

/*========== NAV ==========*/
.nav {
  max-width: 1024px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: -1000%;
    left: 0;
    width: 100%;
    padding: 1.5rem 0 1rem;
    text-align: center;
    background-color: var(--body-color);
    transition: .4s;
    box-shadow: 0 4px 4px rgba(0,0,0,.1);
    border-radius: 0 0 1rem 1rem;
    z-index: var(--z-fixed);
  }

  #logo-menu {
    display: block;
    width: 40px;
    right: 0px; 
  
  }
}

.nav__item {
  margin-bottom: var(--mb-2);
}

.nav__link, .nav__logo, .nav__toggle {
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.nav__logo:hover {
  color: var(--first-color);
}

.nav__link {
  transition: .3s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__toggle {
  font-size: 1.3rem;
  cursor: pointer;
}

/* Show menu */
.show-menu {
  top: var(--header-height);
}

/* Active menu */
.active-link {
  color: var(--first-color);
}

/* Change background header */
.scroll-header {
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* Scroll top */
.scrolltop {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem;
  background: rgba(6,156,84,.5);
  border-radius: .4rem;
  z-index: var(--z-tooltip);
  transition: .4s;
  visibility: hidden;
}

.scrolltop:hover {
  background-color: var(--first-color-alt);
}

.scrolltop__icon {
  font-size: 1.8rem;
  color: var(--body-color);
}

/* Show scrolltop */
.show-scroll {
  visibility: visible;
  bottom: 1.5rem;
}

/*========== HOME ==========*/
.home__container {
  height: calc(100vh - var(--header-height));
  align-content: center;
  background-image: url("media/bamboo5.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.home__title {
  font-size: var(--biggest-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}

.home__subtitle {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-4);
}

.home__img {
  width: 300px;
  justify-self: center;
  animation: ellipseRotate 10s ease-in-out infinite;
}

@keyframes ellipseRotate {
  0% {
    transform: perspective(600px) rotateY(-35deg);
  }
  50% {
    transform: perspective(600px) rotateY(35deg);
  }
  100% {
    transform: perspective(600px) rotateY(-35deg);
  }
}

.bamboo-one {
  position: absolute;
  height: 70vmin;
  width: 70vmin;
 
  transform: translate(-50%, -50%);
  background: url("media/bamboo-one.png") no-repeat center bottom;
  z-index: -1;
  transform-origin: bottom;
  animation: bamboo 8s linear infinite;
}

@keyframes bamboo {
  0% {
    transform: rotateZ(5deg);
  }
  50% {
    transform: rotateZ(-5deg);
  }
  100% {
    transform: rotateZ(5deg);
  }
}

ul.stars-wind {
	position: absolute;
	height: 100%;
	width: 100%;
  top: 15%;
	/* margin-top: 50px; */
  overflow: hidden;
  z-index: -1;
	animation: 1.5s ease-in 0s 1 fade-in;
}

@keyframes fade-in {
	0% {
		left: -50px;
		opacity: 0;
	}
	100% {
		left: 0;
		opacity: 1;
	}
}

@media screen and (orientation: portrait) and (min-width: 976px) {
  ul.stars-wind {
    top: 35%;
  }
}

.stars {
	position: absolute;
  top: 20%;
	width: 20px;
	height: 20px;
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	background: linear-gradient(to right, #f1d21e, #ecba2e);
 
	
	/* box-shadow: 8px 10px 20px -10px #3a5d46, 2px -1px 0 1px #3f8456,
		200px -100px 15px -15px #77ed9e, 200px -100px 0 -10px #3f8456,
		-140px 65px 15px -20px #77ed9e, -140px 65px 0px -13px #3f8456,
		140px 65px 0px -15px #77ed9e; */
  z-index: 0;  
}

.stars:nth-child(1) {
  background: linear-gradient(to right, #f5ac0e, #ecba2e);
	animation: 3s ease-in 0s infinite stars-1;
}

@keyframes stars-1 {
	0% {
		left: -150px;
		transform: scale3d(1, 1, 1);
    opacity: 0;
	}
  30% {
    opacity: 0;
	}
	75% {
		transform: scale3d(1, 0.75, 1) translate(100px, 100px);
    opacity: 1;
	}
  85% {
    opacity: 0;
	}
	100% {
		left: 100%;
		transform: scale3d(1, 1, 1) translate(20px, -20px) rotate(-50deg);
    opacity: 0;
	}
}

.stars:nth-child(2) {
  background: linear-gradient(to right, #f0d805, #ecba2e);
	animation: 2.5s ease-in 0.5s infinite stars-2;
}

@keyframes stars-2 {
	0% {
		left: -50px;
		transform: scale3d(0.5, 0.5, 0.5);
    opacity: 0;
	}
  30% {
    opacity: 0;
	}
	60% {
		transform: scale3d(0.75, 0.25, 0.5) translate(100px, -150px);
    opacity: 1;
	}
  85% {
    opacity: 0;
	}
	100% {
		left: 100%;
		transform: scale3d(0.5, 0.5, 0.5) translate(0px, -20px);
    opacity: 0;
	}
}

.stars:nth-child(3) {
  background: linear-gradient(to right, #f0d805, #ecba2e);
	animation: 3.5s ease-in 0.75s infinite stars-3;
}

@keyframes stars-3 {
	0% {
		left: -50px;
		transform: scale3d(1, 0.5, 0.5);
    opacity: 0;
	}
  30% {
    opacity: 0;
	}
	50% {
		transform: scale3d(0.25, 0.65, 0.5) translate(100px, 100px) rotate(-30deg);
    opacity: 1;
	}
  85% {
    opacity: 0;
	}
	100% {
		left: 100%;
		transform: scale3d(1, 0.5, 0.5) translate(100px, -100px);
    opacity: 0;
	}
}

.stars:nth-child(4) {
  background: linear-gradient(to right, #f08a05, #ecba2e);
	animation: 4.5s ease-in 0s infinite stars-4;
}

@keyframes stars-4 {
	0% {
		left: -150px;
		transform: rotate(0deg) scale(0.6);
    opacity: 0;
	}
  30% {
    opacity: 0;
	}
	70% {
		transform: rotate(5deg) translate(0, 50px);
    opacity: 1;
	}
  85% {
    opacity: 0;
	}
	100% {
		left: 100%;
		transform: rotate(90deg) translate(0px, -120px) scale(1);
    opacity: 0;
	}
}

/*========== BUTTONS ==========*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #FFF;
  padding: .75rem 1rem;
  /* border-radius: .5rem; */
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transition: .3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

#button-center {
  position: relative;
  margin-top: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
}

/*========== ABOUT ==========*/
.about__data {
  text-align: center;
  /* background-image: url("media/bamboo-right.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; */
}

.about__description {
  margin-bottom: var(--mb-3);
}

.about__img {
  width: 280px;
  /* border-radius: .5rem; */
  justify-self: center;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

/*========== SERVICES ==========*/
.services__container {
  row-gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services__content {
  text-align: center;
}

.services__img {
  width: 64px;
  height: 64px;
  fill: var(--first-color);
  margin-bottom: var(--mb-2);
}

.services__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.services__description {
  padding: 0 1.5rem;
}

/*========== MENU ==========*/
.menu__container {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

.menu__content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--container-color);
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(3,74,40,.15);
  padding: .75rem;
}

#showup {
  width: 45px;
  height: 35px;
  overflow: hidden;
}

.menu__content:hover #showup{
  width: 100%;
  height: 100%;
  background-color: #048654;
  display: flex;
  transition: 200ms;
}

.menu__img {
  width: 100px;
  align-self: center;
  margin-bottom: var(--mb-2);
}

.menu__name, .menu__preci {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.menu__name {
  font-size: var(--normal-font-size);
}

.menu__detail, .menu__preci {
  font-size: var(--small-font-size);
}

.menu__detail {
  margin-bottom: var(--mb-1);
}

.menu__button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  padding: .625rem .813rem;
  border-radius: .5rem 0 .5rem 0;
}

/*========== APP ==========*/
.app__data {
  text-align: center;
}

.app__description {
  margin-bottom: var(--mb-5);
}

.app__stores {
  margin-bottom: var(--mb-4);
}

.app__store {
  width: 120px;
  margin: 0 var(--mb-1);
}

.app__img {
  width: 230px;
  justify-self: center;
}

/*========== CONTACT ==========*/
.contact__container {
  text-align: center;
}

.contact__description {
  margin-bottom: var(--mb-3);
}

/*========== FOOTER ==========*/
.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__logo {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}

.footer__description {
  display: block;
  font-size: var(--small-font-size);
  margin: .25rem 0 var(--mb-3);
}

.footer__social {
  font-size: 1.5rem;
  color: var(--title-color);
  margin-right: var(--mb-2);
}

.footer__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);
}

.footer__link {
  display: inline-block;
  color: var(--text-color);
  margin-bottom: var(--mb-1);
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__copy {
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-top: 3.5rem;
}

/*========== MEDIA QUERIES ==========*/
@media screen and (min-width: 576px) {
  .home__container,
  .about__container,
  .app__container {
    grid-template-columns: repeat(2,1fr);
    align-items: center;
  }

  .about__data, .about__initial,
  .app__data, .app__initial,
  .contact__container, .contact__initial {
    text-align: initial;
  }

  .about__img, .app__img {
    width: 380px;
    order: -1;
  }

  .contact__container {
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
  }
  .contact__button {
    justify-self: center;
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }

  .section {
    padding-top: 8rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__list {
    display: flex;
  }
  .nav__item {
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }
  .nav__toggle {
    display: none;
  }

  .change-theme {
    position: initial;
    margin-left: var(--mb-2);
  }

  .home__container {
    height: 100vh;
    justify-items: center;
  }

  .services__container,
  .menu__container {
    margin-top: var(--mb-6);
  }

  .menu__container {
    grid-template-columns: repeat(3, 210px);
    column-gap: 4rem;
  }
  .menu__content {
    padding: 1.5rem;
  }
  
  .menu__img {
    width: 130px;
  }

  .app__store {
    margin: 0 var(--mb-1) 0 0;
  }
}

@media screen and (min-width: 960px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__img {
    width: 500px;
  }
  
  .about__container,
  .app__container {
    column-gap: 7rem;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
    .home__container {
        height: 640px;
    }
}

/*========== FOOD MENU ==========*/

.food-menu {
  padding-top: 50px;
  max-width: 960px;
  width: calc(100% - 2rem);
  margin-left: auto;
  margin-right: auto;
 
}

.accordion {
  background-color: var(--first-color);
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: var(--first-color-alt);
}

.panel {
  padding: 0 18px;
  background-color: var(--menu-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion:after {
  content: '\02795';
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; 
}