/**
 * @copyright Soul Weddings
 * @author Cool Kids OC (edoardo@nucliux.mx)
 * @version 1.0.1 (Agostos 2022)
 * @since 1.0.0
 */

/*Importación de otros estilos*/
@import "reset.css";
@import "menu.css";
@import "inicio.css";
@import "nosotros.css";
@import "equipo.css";
@import "servicios.css";
@import "certificaciones.css";
@import "destinos.css";
@import "parejas.css";
@import "contacto.css";
@import "footer.css";

@import "animate.min.css";

/*Tipografías*/
@font-face{
	src: url("fonts/Baskerville-Regular.ttf");
	font-family: "Baskerville";
	font-weight: 400;
}

@font-face{
	src: url("fonts/Baskerville-RegularItalic.ttf");
	font-family: "Baskerville";
	font-weight: 400;
	font-style: italic;
}

@font-face{
	src: url("fonts/Baskerville-SemiBold.ttf");
	font-family: "Baskerville";
	font-weight: 600;
}

@font-face{
	src: url("fonts/Baskerville-SemiBoldItalic.ttf");
	font-family: "Baskerville";
	font-weight: 600;
	font-style: italic;
}

@font-face{
	src: url("fonts/Baskerville-Bold.otf");
	font-family: "Baskerville";
	font-weight: 700;
}

@font-face{
	src: url("fonts/Baskerville-BoldItalic.otf");
	font-family: "Baskerville";
	font-weight: 700;
	font-style: italic;
}

@font-face{
	src: url("fonts/Caroline-Regular.otf");
	font-family: "Caroline";
	font-weight: 400;
}

/*Página*/
html,body{
	background-image: url("../img/pagina_fondo.jpg");
	background-repeat: repeat-y;
	background-position: top right;
	background-size: 3%;
    background-color: #FFFFFF;
	width: 100%;
	height: 100%;
	color: #6B8745;
	font-family: 'Baskerville', sans-serif;
	font-weight: 400;
	font-size: 1.5vw;
	line-height: 2vw;
}

h1{
	font-weight: 700;
	font-size: 2.5vw;
	line-height: 3vw;
}

.whatsapp img{
	position: fixed;
	bottom: 1vh;
	left: 1vw;
	width: auto;
	height: 8vh;
	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);
}

/*Estilo para media pantalla
______________________________*/
@media only screen and (max-width: 1024px){
	html,body{
		font-size: 2.5vw;
		line-height: 3vw;
	}

	h1{
		font-size: 3.5vw;
		line-height: 4vw;
	}

	.whatsapp img{
		left: 2vw;
		height: 10vh;
	}
}

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

	h1{
		font-size: 5vw;
		line-height: 5.5vw;
	}
}
