/*Setup Document Empieza*/
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap');
@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=Courgette&display=swap');
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
    transition: all .2s linear;
    font-family: "Poppins", sans-serif;
}
:root{
    --black100:#000;
    --black75:#333;
    --black50:#505050;
    --white100:#fff;
    --white75:#e4e4e4;
    --white50:#aaa;
    --blue:#2f66a5;
    --orange:#ff4500;
    --gray:#808080;
    --green:#22ac44;
    --fontStyle1:"Merienda", cursive;
    --fontStyle2:"Courgette", cursive;
}
html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
}
body{
    overflow-x: hidden;
}
section{
    min-height: 100vh;
}
/*Setup Document Termina*/


/*Intro Empieza*/
.intro{
    position: fixed;
    top: 0;
    opacity: 1;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 9999;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    cursor: default;
}
.intro.hide{
    top: -105%;
    opacity: 0;
}
.intro .heading{
    width: 100%;
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1px solid rgb(185, 185, 185);
}

.intro .heading .text1{
    font-size: clamp(1.5rem, 3vw, 3rem);
    color: #e9ac03;
    font-weight: 600;
    text-shadow: -1px 1px 2px #000;
}

.intro .heading .typeText{
    font-size: clamp(1rem, 3vw, 2rem);
    color: #000000;
}

.intro .heading .text2{
    font-size: clamp(2.3rem, 5vw, 5rem);
    font-weight: 700;
    color: #636363;
}

.intro .container{
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    width: 80%;
    padding: .5rem;
    margin-top: 1rem;
}
.intro .container a{
    flex: 1 1 8rem;
    display: flex;
    align-items: center;
    border-radius: 5px;
    color: #2f66a5;
    flex-direction: column;
    font-size: clamp(.7rem, 2vw, 1.2rem);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    overflow: hidden;
    border: 1px solid #d8d8d8;
}
.intro .container a span{
    text-align: center;
}
.intro .container a:hover{
    box-shadow: 0 3px 6px rgba(0, 0, 0, .4);
    color: #00a791;
}

.intro .container a i{
    font-size: clamp(1.2rem, 3vw, 2rem);
    background: linear-gradient(45deg, #ff5100, #ff8800);
    width: 100%;
    padding: .5rem;
    color: #fff;
}

.intro .container a span{
    padding-block:1rem ;
}

.intro .closeBtnIntro{
    padding: .5rem 3rem;
    margin-top: 5rem;
    font-size: 2rem;
    background:#651186;
    outline: 2px solid #fff;
    color: #ffffff;
    cursor: pointer;
    font-weight: 900;
    border-radius: 25rem;
    letter-spacing: 1px;
}

.intro .closeBtnIntro:hover{
    background:#7d10a8;
    letter-spacing: 2px;
}


/*Intro Termina*/


/*Nav Reservas Empieza*/
.navReservas{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #c5c5c5;
    background: #fff;
    padding: .3rem .5rem;
    z-index: 50;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}
.navReservas .phone{
    padding: .5rem 1rem;
    background: linear-gradient(0, #272727, #696969);
    border-radius: 3px;
    border-top: 2px solid gray;
    outline: 1px solid #333;
    font-weight: 600;
    color: #fff;
    font-size: clamp(.7rem, 2vw, 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.navReservas .phone:hover{
    border-top: 2px solid rgb(255, 191, 165);
    background: linear-gradient(0, orangered, orange);
    outline: 1px solid #b45700;
}

.navReservas .mapDot{
    font-size: clamp(.8rem, 2vw, 1rem);
    padding: .5rem 1rem;
    background: #007767;
    border-radius: 5px;
    color: #fff;
    
}
.navReservas .mapDot:hover{
    background: #009e5c;
}
/*Nav Reservas Termina*/





/*Sección Primer Plato Empieza*/
.menuDiario{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    cursor: default;
    border-bottom: 2px solid #000;
    margin-top: 2rem;
}


.menuDiario.notShow{
    display: none;
}

.menuDiario .heading{
    width: 100%;
    text-align: center;
    margin-block: 1rem;
    background: linear-gradient(45deg, #e9e9e9, #fafafa);
    height: 100%;
    border: 1px solid #c2c2c2;
}
.menuDiario .heading h1{
    font-family: var(--fontStyle1);
    font-size: clamp(3rem, 5vw, 5rem);
    color: #585858;
    border-bottom: 2px solid #979797;
    width: max-content;
    margin-left: 50%;
    transform: translateX(-50%);
}
.menuDiario .heading .priceMenu{
    font-size: clamp(5rem, 5vw, 7rem);
    font-weight: 700;
    color: #ff8800;
    text-shadow: -1px 2px 3px #303030;
}
.menuDiario .heading .priceMenu span{
    font-size: 2rem;
    font-weight: 600;
}
.menuDiario .heading .infoMenu{
    font-style: oblique;
    font-size: .8rem;
    color: #4b4b4b;
    margin-bottom: 1rem;
}
.menuDiario .heading .daysPrice{
    color: #4b4b4b;
    margin-bottom: 1rem;
    font-size: .9rem;
    font-style: oblique;
}
.menuDiario .heading .daysPrice i{
    font-weight: 700;
    font-size: 1.3rem;
    color: #303030;
}

.menuDiario .postres,
.menuDiario .segundoPlato,
.menuDiario .primerPlato{
    border: 1px solid #dbdbdb;
    width: 100%;
    padding: 2rem;
    border-radius: 5px;
    /* box-shadow: 0 3px 5px rgba(0, 0, 0, .2); */
    margin-bottom: 1rem;
}

.menuDiario .segundoPlato{
    background: #f3f3f3;
}



.medioMenu{
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-block: 1rem;
    background: rgb(255, 255, 255);
    box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    gap: 1rem;
    border-radius: 5px;
}
.medioMenu p{
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 500;
    color: #333;
}

.medioMenu span{
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #505050;
}

.medioMenu span strong{
    font-weight: 400;
    font-size: 1.5rem;
}






.menuDiario .postres h1,
.menuDiario .segundoPlato h1,
.menuDiario .primerPlato h1{
    font-size: clamp(2.5rem, 5vw, 5rem);
    border-bottom: 1px solid #000;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: var(--fontStyle1);
    width: max-content;
    color: #000000;
}

.menuDiario .postres .cardPostres,
.menuDiario .segundoPlato .cardSegundoPlato,
.menuDiario .primerPlato .cardPrimerPlato{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: .5rem;
}

.menuDiario .postres .cardPostres li,
.menuDiario .segundoPlato .cardSegundoPlato li,
.menuDiario .primerPlato .cardPrimerPlato li{
    font-size: clamp(1.2rem, 3vw, 2rem);
    border-bottom: 1px solid #c9c9c9;
    padding: .5rem;
    color: #3a3a3a;
    font-family: var(--fontStyle2);
    font-weight: 700;
    margin-left: 1rem;
}






.menuDiario .postres .cardPostres .descriptionPostreCard,
.menuDiario .segundoPlato .cardSegundoPlato li .descriptionSegundoPlato,
.menuDiario .primerPlato .cardPrimerPlato li .descriptionPrimerPlato{
    font-weight: 400;
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--black50);
    font-style: oblique;
}
/*Sección Primer Plato Termina*/







.suplementos{
  min-height: 15vh;
  padding: 2rem 3%;
  border: 1px solid #d6d6d6;
  width: max-content;
  margin-block: 3%;
  margin-inline: 3%;
  border-radius: 5px;
  cursor: default;
}
.suplementos h2{
    font-weight: 400;
}
.suplementos p{
    font-style: oblique;
}

.suplementos strong{
    font-size: .8rem;
    font-weight: 400;
}

/*Sección de Encabezados Termina*/














/*Navbar Empieza*/
.navbar{
    position: fixed;
    top:0 ;
    left: -115%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(10px);
    cursor: default;
}
.navbar.show{
    left: 0;
}

.navbar a{
    padding: .5rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.6);
}
.navbar a:nth-child(3){
    border-bottom: 2px solid #6b6b6b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .7);
}
.navbar a:hover{
    color: orangered;
    background: #000;
}


.horarios{
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 1rem 2%;
    margin-top: 2rem;
    background: #E9E9EC;
    min-height: 30vh;
}

.horarios .day{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .3rem;
    padding: .5rem;
    background: #d4d4d4;
    border-radius: 5px;
    flex: 1 1 10rem;
    border: 1px solid #d4d4d4;
    color: #8d8d8d;
}



.horarios .day.today{
    color: #e9e9e9;
    background: #007767;
    box-shadow: 0 0 5px rgb(0, 194, 136);
    border: 2px solid #00a892;
}



.navbar span{
    cursor: pointer;
    margin-left: 50%;
    margin-top: 2rem;
    padding: .5rem 3rem;
    width: max-content;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
    transform: translateX(-50%);
    background: orangered;
}
.navbar span:hover{
    background: red;
}



.btnNavbar{
    position: fixed;
    bottom: .5rem;
    right: 0;
    z-index: 50;
    cursor: pointer;
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px 0 0 50px;
    background: #4b4b4b;
    box-shadow: -3px 4px 5px rgba(0, 0, 0, .7);
    border-top:1px solid #4b4b4b ;
    border-left:1px solid #4b4b4b ;
    border-bottom:1px solid #4b4b4b ;
}
.btnNavbar i{
    font-size: 1.7rem;
    color: #fff;
}

.TextCarta{
    text-align: center;
    margin-block:1rem ;
    font-size: clamp(1.7rem, 3vw, 3rem);
    border-top: 1px solid #b3b3b3;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: #004261; 
}



/*Sección Platos del Mar empieza*/
.platosdelmar{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem 3%;
    width: 100%;
    min-height: 20vh;
    background: #f3f3f3;
    cursor: default;
}
.platosdelmar h1{
    color: #3d3d3d;
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 300;
    border-bottom: 1px solid gray;
    margin-bottom: 1rem;
    font-family: var(--fontStyle2);
}
.platosdelmar .container{
    width: 100%;
}

.platosdelmar .container li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px dotted #000;
}

.platosdelmar .container li h2{
    font-weight: 500;
    font-family: var(--fontStyle2);
    font-size: clamp(.9rem, 3vw, 2rem);

}
.platosdelmar .container li h3{
    font-weight: 600;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-style: oblique;
}
.platosdelmar .container li h3 strong{
    font-weight: 400;
    font-size: clamp(.8rem, 2vw, 1rem);
}
/*Sección Platos del Mar Termina*/





/*Sección Cocas Empieza*/
.cocas{
    margin-top: 2rem;
    min-height: 20vh;
    cursor: default;
}

.cocas h1{
    color: #3d3d3d;
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 300;
    border-bottom: 1px solid gray;
    margin-bottom: 1rem;
    font-family: var(--fontStyle2);
    margin-left: 50%;
    transform: translateX(-50%);
    margin-bottom: 1rem;
    width: max-content; 
}

.cocas .container{
    padding: 2rem 3%;
}

.cocas .container li{
    border-bottom: 1px dotted #333 ;
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.cocas .container li h2{
    font-weight: 500;
    font-family: var(--fontStyle2);
    font-size: clamp(1.7rem, 3vw, 2.2rem);    
}
.cocas .container li p{
    font-style: oblique;
    color: #3a3a3a;
}
.cocas .container li h3{
    margin-left: auto;
    font-size: clamp(1.7rem, 5vw, 2rem);
    font-style: oblique;
    font-weight: 500;
}

.cocas strong{
    font-size: 1.2rem;
    font-weight: 400;
}
/*Sección Cocas Termina*/




/*Footer Empieza*/
.footer{
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    cursor: default;
    background: #4b4b4b;
    margin-top: 2rem;
    margin-bottom: 5rem;
}
.footer .heading{
    background: #000;
    width: 100%;
    text-align: center;
}
.footer .heading p{
    color: #2f66a5;
    font-size: 1.3rem;
}
.footer .heading span{
    color: #c2c2a5;
    font-size: clamp(1.6rem, 3vw, 3em);
    font-weight: 600;
}
.footer a{
    color: #fff;
    text-align: center;
    padding: .5rem;
    text-decoration: underline;
}
/*Footer Termina*/






