/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(38, 69%, 59%);
  --text-color: hsl(38, 8%, 8%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Space Grotesk', sans-serif;
  --biggest-font-size: 2.375rem;
  --normal-font-size: .938rem;
  --smaller-font-size: .75rem;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 5rem;
    --normal-font-size: 1rem;
    --smaller-font-size: .813rem;
  }
  


}

@media screen and (max-width: 1023px) {
  .home__data .home__description  {
    padding-left: 20px;
    padding-right: 20px;
  }

  

}


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

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 500;
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}


.main {
  overflow: hidden; /* For the animations ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  height: 70px;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: 100;
  margin-top: 0px;
  padding: 12px;
}

/* Change background header */
.scroll-header {
    width: 100vw;
    background: #c87d2e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo, 
.nav__toggle {
  color: var(--text-color);
  display: inline-flex;

}

.nav__logo {
  width: 100px;
  height: 80px;
  object-fit: contain;
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 9999999;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color:white;
    left: 0;
    top: -100%;
    width: 100%;
    padding: 5rem 0 4rem;
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 2px 4px hsla(38, 4%, 15%, .15);
    transition: .4s;
  }

  .modal-items {
    color: white;
    justify-content: center;
    gap: 50px;
    display: block!important;
    grid-template-columns: 1fr 1fr;
    padding: 30px;
  }

  .popup-modal{
    padding: 60px!important;

  }

  

}

@media screen and (max-width: 415px) {
  .modal-items {
    color: white;
    justify-content: center;
    display: block!important;
    padding: 10px;
    transform: scale(1.5);
  }

  .popup-modal{
    padding: 60px!important;
  }

}



.nav__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.nav__link {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/* Show menu */
.show-menu {
  top: 0;
}

/*=============== HOME ===============*/
.home {
  background-color: var(--first-color);
  padding: 9rem 0 2rem;
  height: 100vh;
  display: grid;
}

.home__container {
  display: grid;
  align-content: center;
  row-gap: 2.5rem;
}

.home__data {
  text-align: center;
  margin-top: -20px;
}

.home__title {
  font-size: var(--biggest-font-size);
  margin: .75rem 0;
  font-family: 'Helvetica', Courier, monospace;
}

.home__button {
  margin-top: 2rem;
  display: inline-block;
  background-color: var(--text-color);
  color: #fff;
  padding: .80rem 1.5rem;
  border-radius: 3rem;
  transition: .4s;
  cursor: pointer;
}

.home__button:hover {
  box-shadow: 0 4px 12px hsla(38, 69%, 8%, .2);
  background-color: rgb(53, 35, 0);
}

.home__img img {
  width: 230px;
  animation: floaty 1.8s infinite alternate;
  margin-bottom: 10px;
}

.home__img {
  justify-self: center;

}

.home__shadow {
  width: 230px;
  height: 24px;
  background-color: hsla(38, 21%, 19%, .16);
  margin: 0 auto;
  border-radius: 50%;
  filter: blur(7px);
  animation: shadow 1.8s infinite alternate;
}

.home__footer {
  display: flex;
  justify-content: center;
  column-gap: .5rem;
  font-size: var(--smaller-font-size);
  align-self: flex-end;
  margin-bottom: 1px;
}

/* Animate ghost */
@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}

@keyframes shadow {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(.85, .85);
  }
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .home {
    padding-top: 7rem;
  }

  .popup-modal{
    padding: 40px!important;
  }
}

/* For medium devices */
@media screen and (min-width: 767px) {
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__toggle, 
  .nav__close {
    display: none;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .home__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 2rem;
  }
  .home__data {
    text-align: initial;
  }
  .home__img img {
    width: 400px;
  }
  .home__shadow {
    width: 250px;
    height: 40px;
  }
}

@media screen and (min-width: 1048px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}

/* For 2K resolutions (2048 x 1152, 2048 x 1536) */
@media screen and (min-width: 2048px) {
  body {
    zoom: 1.7;
  }

  .home {
    height: initial;
    row-gap: 4rem;
  }
}

/* For 4K resolutions (3840 x 2160, 4096 x 2160) */
@media screen and (min-width: 3840px) {
  body {
    zoom: 3.1;
  }
}





/*-----------------------------------*\
RECIPE MODAL 
\*-----------------------------------*/

.popup-modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: flex;
  justify-content: center!important;
  align-items: center;
  z-index: 9999;
  background: rgb(29, 29, 29);
  cursor: auto;
  bottom: -500%; /* Initially hidden below the viewport */
  transition: bottom 0.2s ease-in-out;

padding: 50px;
transform: scale(.8);
}
.popup-modal.show {
  bottom: 0; /* Moves the section to the visible area */

}
.modal-container {
  width: 80vw;
  height: auto;
  padding: 20px;
  position: relative;
  padding: 50px;

}

.modal-items {
  color: white;
  justify-content: center;
  gap: 50px;
  display: flex;
  grid-template-columns: 1fr 1fr;
}

.closing-icon {
  display: block;
  position: absolute;
  top: 5vh;
  right: 4vh;
  font-size: 35px;
  color: white;
}
.closing-icon:hover {
  color: gray;
  cursor: pointer;
}





/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  /*========== Colors ==========*/
  --first-color: #e19e35;
  --first-color-alt: #925d07;
  
  --text-color-light: #A6A6A6;
  --body-color: #FFFFFF;
  --container-color: #FFFFFF;
  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 1.8rem;
  --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: 768px) {
  :root {
    --biggest-font-size: 2.5rem;
    --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;
}



img {
  max-width: 100%;
  height: auto;
}


/*========== CLASS CSS ==========*/
.footersection {
  padding: 4rem 0 2rem;
}


/*========== 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;
}



/*========== NAV ==========*/
.nav {
  max-width: 1024px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .darkmode {
    display: none;
  }



}


/* Active menu */
.active-link {
  color: var(--first-color);
}

/*========== HOME ==========*/



/*========== BUTTONS ==========*/



/*========== ABOUT ==========*/


/*========== SERVICES ==========*/




/*========== MENU ==========*/




/*========== CONTACT ==========*/

/*========== FOOTER ==========*/
.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.qrcode img {
  margin-top: -40px;
  margin-left: -20px;
}

.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: 0.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) {
 
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .footersection {
    padding-top: 8rem; 
  }



}

@media screen and (max-width: 980px) {
    .qrcode img {
        display: none!important;
      }
    
  
}

@media screen and (min-width: 960px) {

  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }

}

