
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');


:root{
    --aztec: #152625;
    --twine: #C0905F;
    --gray: #F1F3F0;
    --coffee: #5E4121;
}

html{
    width: 100%;
    display: flex;
    flex-direction: column;
}

body{
    margin: 0;
    background-color: #f1f1f1;
    color: #eee;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    min-height: 100vh;
   
}

a{
    text-decoration: none;
}

/*  NAVIGATION BAR STARTS  */

.nav1{
    display: inline-flex;
    background-color: var(--twine);
    font-family: "Rethink Sans", sans-serif;
    font-size: 15px;
    width: 100%;
    height: 3rem;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 500;
    

}

.nav-container{
    display: flex;
    font-size: 17px;
    background-color: #cecece;
    
   
}

.logo1{
    width: 100px;
    margin-right: .5rem;
    
}

.nav-item{
    flex: 1 0 5rem;
    height: 5rem;
    display: flex;
    background-color:#fff;
    color: #fff;
    /* TO DELETE */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.nav-item:nth-child(1){        /* FOR THE TEXT, WHEN MEDIA-QUERY TO THE SIZE OF A SMARPHONE == DISPLAY: NONE; */
    color: #152625;
    flex-shrink: 3;
}

.nav-item:nth-child(2), a{
    color: #152625;
    flex-shrink: 1;
    flex-wrap: wrap;
    text-decoration: none;
    justify-content: space-evenly;
    
}

.nav-item:nth-child(2) a{

    border-bottom-style: solid;
    border-color: #C0905F;
    border-width: 1px;
    padding-bottom: .2rem;
}

.nav-item:nth-child(2) a:hover{

    border-bottom-style: solid;
    border-color: #C0905F;
    border-width: 3px;
    transition: .1s;
    margin-bottom: .6rem;
}

.nav-item:nth-child(3){
    color: #152625;
    justify-content: space-evenly;
    flex-shrink: 1;
    flex-wrap: wrap;
    padding-right: 2rem;

}


.sidebar .btn:hover{
    background-color: #f0f0f0;

}

.btn i{

    margin-right: .6rem;
    color: #fb8f1a;
}

/*  NAVIGATION BAR ENDS  */

/*  CAROUSEL  STARTS */

.carousel{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

@media (max-width: 500px){
    .carousel{
        height: 50vh;
    }

    .content{
        font-size: 10px;
    }

    .thumbnail .item{
        display: none;
    }
}

.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}
.carousel .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel .list .item .topic{
    color: #C0905F;
}
.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item .buttons button{
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}
/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.thumbnail .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
    font-weight: 500;
}
.thumbnail .item .content .description{
    font-weight: 300;
}
/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #C0905F;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 0;
    }
    .carousel .list .item .content .title{
        font-size: 30px;
    }
}

/*  CAROUSEL ENDS  */

/*  DISH GRID START  */

.main{
    display: flex; 
    justify-content: center;
    width: 100%;
}

.main-dishes{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

}

.main-dishes-title{
    color: #fff;
    font-family: "Rethink Sans", sans-serif;
    font-weight: 500;
    font-size: 30px;
    background-color: var(--twine);
    padding: .5rem 1rem .5rem;
    border-radius: 5px;
}

.main-dishes-sub{
    color: var(--aztec);
    font-family: "Rethink Sans", sans-serif;
    font-size: 20px;
    margin-top: -1rem;
}

.dishes {
    display: grid;
    grid-template-rows: 16.25rem 16.25rem 16.25rem;
    grid-template-columns: 28.125rem 28.125rem 28.125rem;
    margin: 4rem;
    width: 100%;
}

.dish-style {
    margin: 1rem 9rem;
    background: #fcaeae;
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aztec);
    box-shadow: 2px 2px 3px #999;
}

.tide{
    display: flex;
    flex-direction: column;
    margin-left: 1.5rem;

}

.tide h5{
    font-size: 20px;
    overflow: visible;
    margin: 0;

}

.tide p{
    font-size: 13px;
}

.buttons-main button{
    border: none;
    background-color: #fff;
    color: #000;
    padding: .6rem 2rem;
    border-radius: 3px;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
    box-shadow: 2px 2px 3px #999;
    cursor: pointer;
}


@media (max-width: 500px){        
        .main-dishes{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            
        }
    
        .main-dishes-title{
            color: #fff;
            font-family: "Rethink Sans", sans-serif;
            font-weight: 500;
            font-size: 20px;
            background-color: var(--twine);
            padding: .3rem 1rem .3rem;
            border-radius: 5px;
        }
    
        .main-dishes-sub{
            color: var(--aztec);
            font-family: "Rethink Sans", sans-serif;
            font-size: 18px;
            margin-top: .5rem;
            padding: .3rem 1rem .3rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        /*
        .dishes {
            display: grid;
            grid-template-rows: 16.25rem 16.25rem 16.25rem;
            grid-template-columns: 28.125rem 28.125rem 28.125rem;
            margin: 4rem;
            width: 100%;
        }
    
        */
        

        
        .dishes{
            display: grid;
            grid-template-columns: 45% 45%;
            column-gap: 4%;
            row-gap: 3rem;
            margin-left: -14rem;
            justify-content: center;
            
        
        }
    
        .dish-style {
            border-radius: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--aztec);
            padding: 1rem;
            width: 140px;
            background-color: #fcaeae93;
            backdrop-filter: blur(10px);
            border-radius: 10px;
        
            
        }
        
        .dish-style:nth-child(2) p{
            padding: 10px;
        }

        .dish-style img{
            height: 150px;
            width: 200px;
            margin-top: -3rem;
        }

        .tide{
            display: flex;
            flex-direction: column;
            width: 10rem;
    
        }
    
        .tide h5{
            font-size: 15px;
            
        }
    
        .tide p{
            font-size: 15px;
      
        }
    
        .buttons-main button{
            border: none;
            background-color: #fff;
            color: #000;
            padding: .6rem 2rem;
            border-radius: 3px;
            letter-spacing: 3px;
            font-family: Poppins;
            font-weight: 500;
            box-shadow: 2px 2px 3px #999;
            cursor: pointer;
        }
    

      

}
    


/*  DISH GRID END  */

/*  IFRAME SECTION START  */

.iframe-section{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;

}

.iframe-text, .form-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    color: var(--aztec);
    
}

.iframe-text h4, .form-text h4{
    font-size: 30px;
    margin-top: -1rem;

}

.iframe-text p, .form-text p{
    font-size: 18px;
    text-align: center;
}

iframe{
    width: 40%;
    border-radius: 20px;
    box-shadow: 2px 2px 3px #999;
}


@media (max-width: 500px){
    .iframe-section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .iframe-text, .form-text{
        width: 90%;
        color: var(--aztec);

    }
        
    iframe{
        width: 90%;
        border-radius: 20px;
        box-shadow: 2px 2px 3px #999;
        
    }



}

/*  IFRAME SECTION END   */


/*  FORM SECTION START  */

.reservar {
    display: flex;
    flex-direction: row;
    min-height: 30vh;
    margin-top: 5rem;
    background-color: #fff;
    align-items: center;
    justify-content: center;
}

.book-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.button-89 {
  --b: 3px;   /* border thickness */
  --s: .45em; /* size of the corner */
  --color: #373B44;
  
  padding: calc(.5em + var(--s)) calc(.9em + var(--s));
  color: var(--color);
  --_p: var(--s);
  background:
    conic-gradient(from 90deg at var(--b) var(--b),#0000 90deg,var(--color) 0)
    var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
  transition: .3s linear, color 0s, background-color 0s;
  outline: var(--b) solid var(--twine);
  outline-offset: .6em;
  font-size: 16px;

  border: 0;

  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-89:hover,
.button-89:focus-visible{
  --_p: 0px;
  outline-color: var(--color);
  outline-offset: .05em;
}

.button-89:active {
  background: var(--color);
  color: #fff;
}

.book-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35%;
}

.book-title{
    color: var(--twine);
    font-size: 20px;
}

.book-desc{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aztec);
    font-size: 17px;
}

/*  FORM SECTION END  */


/*  FOOTER START  */

.footer-container{
	max-width: 1170px;
	margin:auto;
    height: 25rem;
}

.footer-row{
	display: flex;
	flex-wrap: wrap;
}

ul{
	list-style: none;
}

.footer{
	background-color: #24262b;
    padding: 70px 0;
}

.footer-col{
   width: 25%;
   padding: 0 15px;

}

.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}

.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: var(--twine);
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}

.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}

.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}

.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}

.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}

.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}

@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}


/*  FOOTER END  */


/*  WHATSAPP FLOAT  */

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.float:hover{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
    transition: .1s;
    margin-bottom: .6rem;
}

.my-float{
	margin-top:16px;
}

.sidebar-item{
    display: flex;
    flex-direction: column;
    width: 100%;
    
    
}

.sidebar-item a{
    width: 100%;
    padding: .5rem;   

}

.sidebar-item a:hover{
    background-color: #f0f0f0;
    
}

.sidebar-item .btn{
    padding: .5rem;
}

.sidebar-btn{
    color: var(--twine);
    margin-left: .5rem;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50%;
    z-index: 9999;
    background-color: #ffffff67;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
    
    
}   

.sidebar-item .logo1{
    align-self: center;
    margin-bottom: -2rem;
}

.sidebar-item p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
}


@media(max-width: 500px){
    .hideOnMobile{
        display: none;
    }

    .nav1{
        height: auto;
        padding: .3rem;
        justify-content: center;
    }

   
}


