 @import url('https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900&display=swap');
/*Global styles*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --main-font: 'Source Sans Pro', Georgia, serif;
    --secondary-font: 'Herr Von Muellerhoff', Palatino, serif;
	--tertiary-font: 'Rubik', sans-serif;
    --body-font: 'Cabin', sans-serif;
    --main-font-color-dark: #252525;
    --secondary-font-color: #05a13e;
    --body-font-color: #515151;
}

html{
	font-family: var(--body-font);
	font-size: 10px;
	color: var(--body-font-color);
	scroll-behavior: smooth;
}

h2, .alpha {
  font-size: 47px;
  font-size: 2.9375rem;
  line-height: 1.03128;
}

body{
	overflow-x: hidden;
}
section{
	padding: 3.9rem 0;
	overflow: hidden;
}

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

.ajustado{
	width: auto;
	height: auto;
}

a{
	text-decoration: none;
}

.dorado{
	color: var(--secondary-font-color);
	border-bottom: 2px solid #c59d5f;
	}

p{
	font-size: 1.6rem;
}

.container{
	width: 100%;
	max-width: 122.5rem;
	margin: 0 auto;
	padding: 0 2.4rem;
}

header{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent);
}



.menu-toggle{
	color: #fff;
	font-size: 2.2rem;
	position: absolute;
	top: 10%;
	transform: translateY(-50%);
	right: 2.5rem;
	cursor: pointer;
	z-index: 1500;
}

.fa-times{
	display: none;
}





.open .fa-times{
	display: block;
}

.open .fa-bars{
	display: block;
}

.open .nav-list{
	transform: translateX(0);
}

.open .nav::before{
	opacity: 1;
	transform: scale(1);
}

.hero{
	background: url("img1/índice6.webp");
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.sub-headline{
	font-size: 8.5rem;
	font-family: var(--tertiary-font);
	color: var(--secondary-font-color);
	font-weight: 100;
	line-height: 114px;
	letter-spacing: 2px;
	padding-top: 4.5rem;
	opacity: 0;
	animation: fadeUp .5s forwards;
	animation-delay: .5s;
}

.first-letter{
	text-transform: uppercase;
	font-size: 10.3rem;
}

.headline{
	color: #fff;
	font-size: 3.7rem;
	font-family: var(--main-font);
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: .5rem;
	margin-right: -.5rem;
	animation: scale .5s forwards;
}

.separator{
	display: flex;
	align-items: center;
	justify-content: center;	
}

.line{
	width: 100%;
	max-width: 8.4rem;
	height: .25rem;
	background-color: var(--secondary-font-color);
	position: relative;
	animation: grow 2s forwards;
	animation-delay: .9s;
}

.line-right::before,
.line-left::before{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: .6rem solid transparent;
	opacity: 0;
	animation: grow 2s forwards;
	animation-delay: 1.2s;
}

.line-right::before{
	border-right-color: var(--secondary-font-color);
	right: 0;
}

.line-left::before{
	border-left-color: var(--secondary-font-color);
	left: 0;
}

.asterisk{
	font-size: 1.2rem;
	color: var(--secondary-font-color);
	margin: 0 1.6rem;
	opacity: 0;
	animation: spin 2s forwards;
	animation-delay: .7s;
}

.single-animation{
	opacity: 0;
	animation: fadeDown .5s forwards;
	animation-delay: 1.5s;
}

.headline-description h5{
	color: #fff;
	font-size: 1.4rem;
	font-weight: 100;
	text-transform: uppercase;
	margin-bottom: 1.2rem;
	letter-spacing: 3px;
	margin-right: -3px;
}

.btn{
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-right: -2px;
}

.cta-btn{
	font-size: 1.1rem;
	background-color: #fff;
	padding: .9rem 1.8rem;
	color: var(--body-font-color);
	border-radius: .4rem;
	transition: background-color.5s;
}

.cta-btn:hover,
.cta-btn:focus{
	color: #fff;
	background-color: var(--secondary-font-color);
}


.global-headline{
	text-align: center;
	margin-top: 3.9rem;
}

.discover-our-story .global-headline{
	margin-top: 3.9rem;
}

.global-headline .asterisk{
	color: var(--body-font-color);
	margin: 2.4rem;
}

.headline-dark{
	color: var(--main-font-color-dark);
	letter-spacing: .7rem;
	margin-right: -.7rem;
}

.global-headline .sub-headline{
	letter-spacing: -1px;
	line-height: .42
}

.restaurant-info{
	text-align: center;
}

.restaurant-description{
	margin-bottom: 3rem;
}

.restaurant-description p{
	line-height: 1.6;
	margin-right: 2.4rem;
	margin-bottom: 2.4rem;
}

.body-btn{
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--secondary-font-color);
	position: relative;
	transition: color .5s;
}

.body-btn::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 2px;
	background-color: var(--secondary-font-color);
	transition: background-color .5s;
}

.body-btn:hover,
.body-btn:focus{
	color: var(--main-font-color-dark);
}

.body-btn:hover::before,
.body-btn:focus::before{
	background-color: var(--main-font-color-dark);
}



.tasteful-recipes{
	background: url("img1/índice10.webp") no-repeat center center fixed;
	background-size: cover;
}

.between{
	min-height: 65vh;
	display: flex;
	align-items: center;
}



.image-group{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1.5rem;
}

.discover-our-menu .restaurant-description{
	padding-top: 3rem;
	padding-left: 0.7rem;
	margin-bottom: 0;
}

.perfect-blend{
	background: url("img1/IMG-20220617-WA0005.webp") center no-repeat;
	background-size: cover;
}

footer{
	padding: 7.49rem 0;
	background-color: #121212;
	color: #fff;
	text-align: center;
	position: relative;
}

.back-to-top{
	width: 7rem;
	height: 7rem;
	background-color: #121212;
	position: absolute;
	top: -3rem;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
}

.back-to-top i{
	display: block;
	color: #fff;
	font-size: 2rem;
	padding: 2rem;
	animation: up 2s infinite;
}

.footer-content{
	overflow: hidden;
}

.footer-content h4{
	font-size: 1.9rem;
	text-transform: uppercase;
	font-weight: 100;
	letter-spacing: 3px;
	margin-bottom: 3rem;
}

.footer-content .asterisk{
	margin: 2.4rem 0;
}

.footer-content-about{
	margin-bottom: 5.4rem;
}

.footer-content-about p{
	line-height: 2;
}

.social-icons{
	list-style: none;
	margin-bottom: 5.4rem;
	display: flex;
	justify-content: center;
}

.social-icons i{
	font-size: 2rem;
	color: #fff;
	padding: .8rem 2rem;
	opacity: .5;
	transition: color .5s;
}

.social-icons i:hover,
.social-icons i:focus{
	color: var(--secondary-font-color);
}

.newsletter-form{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
}

.newsletter-input{
	width: 100%;
	max-width: 25rem;
	padding: 1rem;
	border-radius: .4rem;
}

.newsletter-btn{
	background-color: transparent;
	border: none;
	color: var(--main-font-color-dark);
	cursor: pointer;
	font-size: 1.6rem;
	padding: 1px .6rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 21.5rem;
}

@media screen and (min-width: 900px){
	.hero {
		background-image: url("img1/índice6.webp");
		background-repeat:no-repeat;
		background-size:cover;
		background-position:center;
		height: 100vh;
	}
	section{
		padding: 7.9rem;
	}
	
	.menu-toggle{
		display: none;
	}
	
	.active{
		position: relative;
	}
	.active::before{
		content: '';
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #fff;
		left: 0;
		bottom: -3px;
	}
	.sub-headline{
		font-size: 10rem;
	}
	.first-letter{
		font-size: 12.2rem;
	}
	.headline{
		font-size: 4.7rem;
		letter-spacing: .8rem;
		margin-top: 3.9rem;
	}
	.line{
		max-width: 11.4rem;
	}
	.restaurant-info{
		display: flex;
		align-items: center;
	}
	.restaurant-info > div{
		flex: 1;
	}
	.padding-right{
		padding-right: 7rem;
	}
	.footer-content{
		max-width: 77.5rem;
		margin: auto;
	}
	.footer-content-about{
		max-width: 51.3rem;
		margin: 0 auto 5.4rem;
	}
	.footer-content-divider{
		display: flex;
		justify-content: space-between;
	}
	.social-media,
	.newsletter-form{
		width: 100%;
		max-width: 27.3rem;
		margin: 0 1rem;
	}
	.social-icons i{
		opacity: 1;
	}
	.newsletter-btn{
		margin-left: 17.5rem;
	}
}

@keyframes fadeUp{
	0%{
		transform: translateY(4rem);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes scale{
	0%{
		transform: scale(2);
	}
	100%{
		opacity: 1;
		transform: scale(1));
	}
}
@keyframes grow{
	0%{
		width: 0;
	}
	100%{
		opacity: 1;
		width: 100%;
	}
}
@keyframes spin{
	0%{
		transform: rotate(0);
	}
	100%{
		opacity: 1;
		transform: rotate(-360deg);
	}
}
@keyframes fadeDown{
	0%{
		transform: translateY(-1rem);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes up{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: translateY(-1rem);
	}
}
.window-notice {
    background: rgba(33, 41, 52, .85);
    bottom: 0;
    display: flex;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    transition: background .6s;
}

.window-notice .content {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(33, 41, 52, .75);
    box-sizing: content-box;
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 600px;
    min-width: 320px !important;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem;
    font-size: 1.3rem;
}

.content-buttons {
    text-align: center;
    margin-top: 1rem;
}

.content-buttons a {
    text-decoration: none;
    display: inline-block;
    padding: 1rem;
    background-color: #0080DE;
    color: #FFF;
    text-transform: uppercase;
}

.content-buttons a:hover {
    background-color: #006AB8;
}

.content-text a {
    color: #0080DE;
    text-decoration: none;
}

.content-text a:hover {
    color: #006AB8;
    text-decoration: underline;
    text-align: justify;
}
#fondo {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1111111;
}

#pop-up {
	background: url("img1/dsc_2731_opt.webp") center no-repeat;
    width: 800px;
    position: absolute;
    top: 200px;
    left: 50%;
    margin-left:-400px;
    padding: 30px;
    border-radius:10px;
}

#cerrar-pop-up {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
}

#cerrar-pop-up span{
    display: flex;
    width: 50px;
    height: 50px;
    background-color: grey;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    font-size: 40px;
    font-weight: bold;
    border-radius: 1000%;
}


@media screen and (max-width: 800px){
    #pop-up {
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        bottom: 0;
        overflow-y: scroll;
    }
}
@media screen and (max-width: 500px) {
	 .hero{
		background-image: url("img1/índice6-movil.webp");
		background-repeat:no-repeat;
		background-size:contain;
		background-position:center;
		width: 100%;
		height: 50vh;
		background-attachment: fixed;
	 }

	.sub-headline{
		font-size: 4rem;
	}
}
@media screen and (max-width: 1900px) {
	 .hero{
		background-image: url("img1/índice6-movil.webp");
		background-repeat:no-repeat;
		background-size:contain;
		background-position:center;
		width: 100%;
		height: 100vh;
		background-attachment: fixed;
    }
@media only screen and (max-device-width: 1920px) and (orientation: landscape) {
	 .hero{
		background-image: url("img1/índice6.webp");
		background-repeat:no-repeat;
		background-size:cover;
		height: 100vh;
	}
}

#menu_on{
	display: inline-block;
	width:30px;
	height: 20px;
	position: relative;
	z-index: 2;
}
#img {image-orientation: from-image;}

.centrada {
  display: block;
  margin-left: auto;
  margin-right: auto;
}