@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root{
  --primary-color: #f568c0;
  --primary-color-light: #fffcfa;
  --primary-color-dark: #10c1c7;
  --text-dark: #18181b;
  --text-light: #6b7280;
  --white: #ffffff;
  --max-width: 1200px;
  --color-terciario:  #83340c;

  --bg: #f5f5f5;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

.section__container{
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header{
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  color: var(--text-dark);
  text-align: center;
}

.section__description{
  color: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
}



.btn{
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  white-space: nowrap;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--primary-color-dark);
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover{
  background-color: var(--primary-color);
}

.logo a{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo a span{
  color: var(--primary-color-dark);
}

img{
  display: flex;
  width: 100%;
}

a{
  text-decoration: none;
  transition: 0.3s;
}

ul{
  list-style: none;
}

html, body{
  scroll-behavior: smooth;
}

body{
  font-family: "Poppins", sans-serif;
}

nav{
  position: fixed;
  isolation: isolate; 
  width: 100%;
  z-index: 9;
}

.nav__header{
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__logo a{
  color: var(--white);
}

.nav__menu_btn{
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links{
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  padding: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color-light);
  transition: .5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open{
  transform: translateY(0);
}

.nav__links a{
  font-weight: 500;
  color: var(--primary-color)
}

.nav__links a:hover{
  color: var(--text-dark);
}

.nav__btn{
  display: none;
}


.header__container{
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.header__image img{
  max-width: 600px;
  margin-inline: auto;
}

.header__content h1{
  margin-bottom: 1rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 4.5rem;
  color: var(--text-dark);
  text-align: center;
}

.header__content h1 span{
  color: var(--color-terciario);
}

.header__content .section__description{
  margin-bottom: 2rem;
}

.header__btn{
  text-align: center;
}

.special__container :is(.section__header, .section__description){
  max-width: 600px;
  margin-inline: auto;
}

.special__grid{
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.special__card{
  padding: 1rem;
  text-align: center;
  border-radius: 2rem;
  transition: .3s;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
}

.special__card:hover{
  transform: scale(1.05);
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2), 0px 15px 30px rgba(0, 0, 0, 0.1);

}

.special__card img{
  max-width: 200px;
  margin-inline: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3));
}

.special__card h4{
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-terciario);
}

.special__card p{
  margin-bottom: 0.5rem;
  color: var(--text-light);
  line-height: 1.75rem;
}

.special__ratings{
  margin-bottom: 1rem;
  font-size: 1rem;
  color: goldenrod;
}

.special__footer{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.special__footer .price{
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tex-dark);
}

.explore__container{
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.explore__image img{
  max-width: 400px;
  margin-inline: auto;
  filter: drop-shadow(0 0 50px rgba(252, 127, 9, 0.4));
}

.explore__contet .section__description{
  margin-bottom: 2rem;
}

.explore__btn{
  text-align: center;
}

.banner__container{
  display: grid;
  gap: 1rem;
}

.banner__card{
  padding: 2rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3rem;
  transition: 0.3s;
}

.banner__card:hover{
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
}

.banner__card .banner__icon{
  display: inline-block;
  margin-bottom: 1rem;
  padding: 5px 11px;
  font-size: 2rem;
  color: var(--white);
  border-radius: 1rem;
}

.banner__card:nth-child(1) .banner__icon{
  background-color: #62b15c;
  box-shadow: 5px 5px 30px #62b15cd0;
}

.banner__card:nth-child(2) .banner__icon{
  background-color: #ff3e67;
  box-shadow: 5px 5px 30px #ff3e67d0;
}

.banner__card:nth-child(3) .banner__icon{
  background-color: #185adb;
  box-shadow: 5px 5px 30px #185adbd0;
}

.banner__card h4{
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.banner__card p{
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.75rem;
}

.banner__card a{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 500;
  color: var(--primary-color);
}

.banner__card a span{
  font-size: 1.25rem;
  transition: .3s;
}

.banner__card a:hover span{
  transform: translateX(10px);
}

.chef{
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.chef__bg{
  position: absolute;
  z-index: -1;
  max-width: 275px;
  left: -4rem;
  bottom: -2rem;
}

.chef__container{
  padding-bottom: 10rem;
  display: grid;
  gap: 2rem;
}

.chef__content .section__description{
  margin-bottom: 1rem;
}

.chef__image{
  position: relative;
  isolation: isolate;
}

.chef__image img{
  max-width: 500px;
  border-radius: 100%;
  margin-inline: auto;
}

.chef__image::after{
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
  max-width: 500px;
  background-color: var(--primary-color);
  border-radius: 100%;
  z-index: -1;
}

.chef__list{
  display: grid;
  gap: .5rem;
}

.chef__list li{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
}

.chef__list li span{
  font-size: 1.5rem;
}

.chef__list li:nth-child(1) span{
  color: #62b15c;
}

.chef__list li:nth-child(2) span{
  color: #ff3e67;
}


.chef__list li:nth-child(3) span{
  color: #185adb;
}

/* Location and Hours */
.location__header {
  padding: 20px;
  
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0 auto;
  text-align: start;
  
}


.location__title {
  color: var(--primary-color-dark); 
  font-size: 1.5em;
  margin: 10px 0;
  text-align: start;
}

.ubicacion{
  margin-top: 50px;
}


.location__description {
  color: #333;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  margin: 5px 0;
  text-align: start;
}


.location__description i {
  color: var(--primary-color);
  font-size: 1.2em;
}


@media (max-width: 768px) {
 .explore__container  .location__header{
  display: flex;
 
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  
 }

  

  .location__title {
      font-size: 1.4em;
  }

  .location__description {
      font-size: 1em;
  }
}


.client__container{
  padding-top: 0;
}

.client__container span :is(.section__header, .section__description){
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.client__swiper{
  margin-top: 2rem;
  max-width: 750px;
  margin-inline: auto;
  padding: 3rem 1rem;
  overflow: hidden;
  border: 2px solid rgba(252, 127, 9, 0.5);
  box-shadow: 5px 5px 30px rgba(252, 127, 9, 0.2);
  border-radius: 3rem;
}

.swiper{
  padding-bottom: 3rem;
  width: 100%;
}

.client__card{
  text-align: center;
}

.client__card p{
  margin-bottom: 2rem;
  color: var(--text-dark);
  line-height: 1.75rem;
}

.client__card img{
  margin-bottom: 1rem;
  max-width: 70px;
  margin-inline: auto;
  border-radius: 100%;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.2 );
}

.client__card h4{
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.client__card h5{
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.swiper-pagination-bullet-active{
  background-color: var(--primary-color);
}

.footer{
  background-color: var(--primary-color-light);
}

.footer__container{
  display: grid;
  gap: 4rem 2rem;
}

.footer__logo{
  margin-bottom: 1rem;
}

.footer__col .section__description{
  text-align: left;
}

.footer__col h4{
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links{
  display: grid;
  gap: 0.75rem;
}

.footer__links a{
  color: var(--text-light);
}

.footer__links a:hover{
  color: var(--primary-color);
}

.footer__bar{
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  display: flex;
  justify-content: space-around;
}

/* Responsive styles */
@media (width > 540px){
  .special__grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .banner__container{
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container{
    grid-template-columns: 3fr 2fr;
  }

  
}

@media (width > 768px){
  nav{
    position: static;
    padding: 2rem 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header{
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo a{
    color: var(--primary-color);
  }

  .nav__menu__btn{
    display: none;
  }

  .nav__links{
    position: static;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none;
  }

  .nav__links a{
    color: var(--text-dark);
  }

  .nav__links a:hover{
    color: var(--primary-color);
  }

  .nav__btn{
    display: flex;
    flex: 1;
  }

  .nav__btn .btn{
    padding: 8px 10px;
    background-color: var(--primary-color-dark);
    transition: all ease .5s;
    
  }

  .nav__btn .btn:hover{
    transform: scale(1.1);

    background-color: var(--primary-color);
    
  }

  .header__container{
    grid-template-columns: 2fr 3fr;
    align-items: center;
  }

  .header__content h1,
  .header__content .section__description,
  .header__btn{
    text-align: left;
  }

  .header__image{
    grid-area: 1/2/2/3;
  }

  .special__grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .explore__container{
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .explore__content .section__header{
    max-width: 500px;
  }

  .explore__content :is(.section__header, .section__description),
  .explore__btn{
    text-align: left;
  }

  .banner__container{
    grid-template-columns: repeat(3, 1fr);
  }

  .chef__bg{
    max-width: 300px;
  }

  .chef__container{
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .chef__image{
    grid-area: 1/2/2/3;
  }

  .chef__content :is(.section__header, .section__description){
    text-align: left;
  }

  .chef__list li{
    justify-content: flex-start;
  }

  .client__swiper{
    padding: 3rem 2rem;
  }

  .footer__container{
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

@media (width > 1024px){
  .special__grid{
    gap: 2rem;
  }

  .special__card{
    padding: 2rem;
    border-radius: 3rem;
  }

  .banner__conainer{
    gap: 2rem;
  }

  .chef__bg{
    max-width: 375px;
  }
}


.ri-menu-line{
  color: var(--primary-color-light);
}

.ri-menu-line:hover, .ri-close-line{
  color: #eae5e2;
  cursor: pointer;
}

#whatsapp .wtsapp{
  position: fixed;
  transform: all .5s ease;
  background-color: #25d366;
  display: block;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  border-right: none;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  bottom: 70px;
  left: 20px;
  border: 0;
  z-index: 9999;
  width: 50px;
  height: 50px;
  line-height: 50px;
}

#whatsapp .wtsapp:before{
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

#whatsapp .wtsapp:focus{
  border: none;
  outline: none;
}
  
@keyframes pulse-border{
  0%{
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
     opacity: 1;
  }
  100%{
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
     opacity: 0;
  }
}

  

#food-cards{
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.container__cards__food{
  max-width: 1120px;
   width: 100%;
 
   padding: 40px 0;
 }
 
 .slide-container{
   margin: 0 30px;
   overflow: hidden;
 }
 
 .card{
   background: #fff;
   border-radius: 8px;
 }
 
 .card .image-box{
   height: 200px;
 }
 
 .card .image-box img{
   width: 100%;
   height: 100%;
   border-radius: 8px 8px 0 0;
 }
 
 .card .profile-details{
   display: flex;
   align-items: center;
   column-gap: 12px;
   padding: 15px;
   background-color: var(--primary-color-light);
 }
 
 .card .profile-details img{
   height: 40px;
   width: 40px;
   border-radius: 50%;
 }
 
 .profile-details .name{
   font-size: 15px;
   font-weight: 500;
 }
 
 .profile-details .job{
   font-size: 12px;
   font-weight: 500;
   color: #4d4d4d;
 }
 
 .swiper-navBtn{
   color: var(--primary-color-light);
   height: 40px;
   width: 40px;
   background: var(--primary-color-dark);
   border-radius: 50%;
 }

 .swiper-navBtn:hover{

  background: var(--primary-color);
  transition: ease .5s;
 
}
 
 .swiper-navBtn::before,
 .swiper-navBtn::after{
   font-size: 18px;
 }
 
 .swiper-pagination-bullet{
   background-color: var(--primary-color-dark);
 }

 .ri-restaurant-2-line{
  font-size: 1.5rem;
  color: var(--primary-color-dark);
 }

 .nuestro__sabor{
  color: var(--primary-color-dark);
 }

 .footer__contact{
 color: #000;
 }
 
 @media  (max-width: 768px){
   .swiper-navBtn {
     display: none;
   }

   .footer__bar{
    
    flex-direction: column;
    row-gap: 10px;
    justify-content: center;
  }

 
 }
    
  
  
/* congelados */
.cards-congelados{
  margin-top: -10%;
}

.cards-congelados .congelados__mas{
  text-align: center;
  width: 100%;
  margin-top: 30px;
}
  



  
.main{
  width: 1170px;
  margin: 100px auto;
}

.section-title{
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2{
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.section-title h2:before{
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #00875c;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.menus{
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap;
}

.menu-column{
  width: 48%;
}

.menu-column h4{
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  margin-top: 30px;
  color: var(--color-terciario);
}

.menu-column h4:before{
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color-dark);
  bottom: 0;
}

.single-menu{
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.single-menu img{
  border-radius: 50%;
  max-width: 110px;
  height: 120px;
  border: 1px dashed var(--primary-color-dark);
  padding: 3px;
  margin-right: 15px;
}

.single-menu .menu-content h5{
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px dashed var(--primary-color-dark);
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.single-menu .menu-content h5 span{
  color: tomato;
  float: right;
  font-weight: 600;
  font-size: italic;
}

.papas-fritas{
  margin-top: 6%;
}

    

    

.congelados-bg{
  background-image: url('assets/rosticeria/congelado-bg.jpg'); 
  width: 100%;
  background-size: cover; 
  background-repeat: no-repeat; 
  background-position: center; 
  height: 80vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: white; 
  text-align: center; 
}

.congelados-bg::before{
  content: '';
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 80%;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 0; 
}

.congelados-bg h1{
  color: white;
  z-index: 2;
}


.congelados-bg p{
  color: white;
  z-index: 2;
}











  

  




    

