/**
 * @copyright Padel Kong
 * @author MarLab (edoardo@marlab.mx)
 * @version 1.0.0a (Junio 2024)
 * @since 1.0.0
 */

/*Importación de otros estilos*/
@import "reset.css";
@import "menu.css";
@import "inicio.css";
@import "servicios.css";
@import "horarios.css";
@import "instalaciones.css?v=1.0.0a";
@import "jungle.css";
@import "ubicacion.css";
@import "galeria.css";
@import "footer.css";

@import "owl.carousel.min.css";
@import "owl.theme.default.min.css";

/*Tipografías*/
@font-face{
	font-family: "Akira";
	font-weight: 800;
	src: url("fonts/AkiraExpanded-Superbold.otf");
}

@font-face{
	font-family: "Monument";
	font-weight: 800;
	src: url("fonts/MonumentExtended-Ultrabold.otf");
}

/*Página*/
html,body{
    background-color: #0F1311;
	width: 100%;
	height: 100%;
	color: #F95D25;
	font-family: 'Monument', sans-serif;
	font-weight: 800;
	font-size: 2vw;
	text-transform: uppercase;
	letter-spacing: 0.3vw;
	line-height: 2.5vw;
}

h1{
    color: #FFFFFF;
	font-family: 'Akira', sans-serif;
    font-weight: 800;
    font-size: 4vw;
    line-height: 4.5vw;
}

.whatsapp{
	position: fixed;
	bottom: 1vh;
	right: 1vw;
	z-index: 15;
}

.whatsapp img{
	width: 5vw;
	height: auto;
	object-fit: contain;

	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.whatsapp img:hover{
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
}

.marlab{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2vh 0;
	width: 100%;

	display: -webkit-flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
}

.marlab img{
	width: auto;
	height: 3vh;
	object-fit: contain;
}

/*Estilo para media pantalla
______________________________*/
@media only screen and (max-width: 1024px){
	html,body{
        font-size: 3vw;
		letter-spacing: 0.5vw;
        line-height: 3.5vw;
    }
    
    h1{
        font-size: 5vw;
        line-height: 5.5vw;
    }

	.whatsapp{
		right: 2vw;
	}

	.whatsapp img{
		width: 10vw;
	}
}

/*Estilo para móviles
______________________________*/
@media only screen and (max-device-width: 465px) and (max-aspect-ratio: 13/9){
	html,body{
        font-size: 4.5vw;
        line-height: 5.5vw;
    }
    
    h1{
        font-size: 6.5vw;
        line-height: 7.5vw;
    }

	.whatsapp img{
		width: 15vw;
	}
}
