@charset "utf-8";
/* CSS Document */

/*MENÚ RESTAURANTES*/

/*GENERALES*/
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box; 
	font-family: "Roboto", sans-serif;
	text-decoration: none;
    list-style: none;
}

/*BARRA Y LOGOTIPO*/
header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	height: 100px;
	background: #000000;
}

.menu{
	max-width: 1200px;
	height: 100%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu .logo img{
	height: 65px;
	padding-left: 0px
}

/*MENU*/
nav{
	height: 100%;
}

nav > ul{
	height: 100%;
	display: flex;
	padding-right: 10px;
}

nav > ul > li{
	height: 100%;
	position: relative;
}

nav > ul > li > a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 10px;
	color: #e4c784;
	font-size: 15px;
	text-transform: uppercase;
	transition: all 300ms ease;
}

nav > ul > li > a:hover{
	background: #e4af34;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    color: #000;
	font-size: 18px;
	text-decoration: none;
}

nav .active{
	color: white;
}

/*SUB MENU*/
nav ul li > ul {
    width: 170px;
    display: flex;
    flex-direction: column;
    background: #e4c784;
    position: absolute;
    top: 120px;
    padding: 14px 0px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    z-index: 10;
    transition: all 300ms ease;
}

nav ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 100px;
}

nav ul li ul::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #F302F9;
    position: absolute;
    top: -12px;
    left: 40px;
}

nav ul li ul li > a {
    display: block;
    color: #000;
	list-style: none;
    padding: 6px;
    padding-left: 14px;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 300ms ease;
}

nav ul li ul li a:hover {
    background: #000;
    color: #e4af34;
	transform: scale(1.1);
    padding-left: 30px;
    font-size: 18px;
	text-decoration: none;
}

html{
	scroll-behavior: smooth;
}

section[id]{
	scroll-margin-top: 100px;
}

.menu .icon__menu{
	font-size: 60px;
	color: #2CFF02;
	cursor: pointer;
	width: 60px;
	height: 100%;
	padding: 0px;
	display: none;
	align-items: center;
}

#label__check{
	width: 60px;
	height: 100%;
	display: none;
}

#check__menu{
	display: none;
}


/*RESPONSIVE*/
@media screen and (max-width: 850px) {
	nav > ul {
        flex-direction: column;
        background-color: #c6ac77;
        position: fixed;
        left: 0;
		top: 100px;
        width: 80%;
        height: 0px;
        transition: all 300ms ease;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }
	
	nav > ul > li > a{
		font-size: 24px;
		color: #000000
	}

    nav > ul > li > a:hover {
        font-size: 24px;
    }

    nav ul li ul {
        left: 150px;
    }
	
	nav ul li ul li > a{
		font-size: 24px;
	}
	
	nav ul li ul li > a:hover{
		font-size: 24px;
	}

    nav ul li:hover ul {
        top: 60px;
    }

    nav .active {
        transform: scale(1);
    }

	#label__check{
		display: block;
	}
	
	.menu .icon__menu{
		display: flex;
	}
	
	#check__menu:checked ~ nav > ul{
		height: 350px;
		visibility: visible;
		opacity: 1;
	}
}


/*MENU ESTÁTICO*/

/* VIDEO*/
.container1-max-width {
    position: relative;
    height: 70vh;
    margin-top: 100px;
}

.video-container {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
}

/* FIN VIDEO*/


/*PORTADA*/
.restaurantes {
    background-image: url("../img/demo-restaurantes/header.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70vh;
    flex-direction: column;
	margin-top: 100px;
}

.factory {
    background-image: url("../img/factory79/factory79-header.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70vh;
    flex-direction: column;
	margin-top: 100px;
}

/*LINEA SEPARADORA*/
.linea-separadora {
        border: none;
        height: 5px;
        background-color: #75afc2; 
        width: 100%; /* Ancho del 100% */
        margin: 20px auto; /* Centrada con margen */
    }

/*CONTACTO CLIENTES*/
.contacto-container {
    display: flex;
    margin-right: 0PX;
    align-items: center;
    justify-content: center;
}

.contacto-container ul li {
    display: inline-block;
    margin: 0 20px;
    width: 100px;
    height: 100px;
    text-align: center;
}

.contacto-container ul li a {
    display: block;
    padding: 0 10px;
    background: #234d69;
    border-radius: 6px;
    color: #fff;
    line-height: 100px;
    font-size: 50pt;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, .3);
}

.contacto-container ul li a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, .7);
}

.contacto-container ul li .whatsapp:hover {
    background-color: #05d327;
}

.contacto-container ul li .location-dot:hover {
    background-color: #117bb8;
}


