/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
@font-face {
	font-family: Adam;
	src: url("webfont/ADAM.CGPRO.eot"); /* IE9 Compat Modes */
	src: url("webfont/ADAM.CGPRO.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
	url("webfont/ADAM.CGPRO.woff") format("woff"), /* Modern Browsers */
	url("webfont/ADAM.CGPRO.ttf")  format("truetype"), /* Safari, Android, iOS */
	url("webfont/ADAM.CGPRO.svg#svgFontName") format("svg"); /* Legacy iOS */
}

html {
	/*background-color: #222;*/
	background-color:#090909;
	min-height: 100%;
	position: relative;
}

html, body {
	height: 100%;
}

body {
	background-color: #090909;
	font-family: "Open Sans", "Helvetica", sans-serif;
}

.page-body {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.page-home .head_container,
.page-tour .head_container,
.page-contact .head_container,
.page-bio .head_container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	height: auto;
}

.page-music .head_container {
	height: auto;
}

.page-music .logo,
.page-music .menu-group {
	align-items: flex-start;
}

.page-home .logo,
.page-tour .logo,
.page-contact .logo,
.page-bio .logo,
.page-home .menu-group,
.page-tour .menu-group,
.page-contact .menu-group,
.page-bio .menu-group {
	align-items: flex-start;
}

.hero {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.55) 100%);
	z-index: 0;
	pointer-events: none;
}

.hero-overlay {
	position: relative;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	z-index: 1;
	padding-bottom: 9vh;
}

.hero-home .hero-overlay {
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 0;
}

.hero-overlay--center {
	align-items: center;
	padding-bottom: 0;
}

.hero-overlay--top {
	align-items: flex-start;
	padding-top: 14vh;
	padding-bottom: 0;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	color: #f7f7f7;
	text-align: center;
	padding: 0 5vw;
}

.hero-home .hero-content,
.hero-home .hero-socials {
	transform: translateY(6vh);
}

.hero-title {
	font-family: "Adam";
	font-size: clamp(52px, 10vw, 140px);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.hero-cta {
	font-family: "Adam";
	font-size: 16px;
	letter-spacing: 0.25em;
	color: #0a0a0a;
	background: #f7f7f7;
	padding: 12px 26px;
	text-decoration: none;
	border-radius: 999px;
}

.hero-cta:hover {
	background: #e2e2e2;
}

.hero-scroll {
	font-family: "Adam";
	font-size: 12px;
	letter-spacing: 0.3em;
	color: #f7f7f7;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	opacity: 0.8;
}

.hero-arrow {
	font-size: 16px;
	animation: hero-bounce 1.6s infinite;
}

@keyframes hero-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(6px); }
}

#cabezera {
	height: 100%;
	background-image: url('background.jpg');
	background-image: image-set(
		url('background.webp') type('image/webp'),
		url('background.jpg') type('image/jpeg')
	);
	background-position: center center;
	background-repeat: no-repeat; 
	background-size: cover;
	/*background-color: #222;*/
	background-color:#090909;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	z-index: 0;
}


.responsive {
	width: 100%;
	height: auto;
}

.logo {
	color: white; 
	width: 40%;
	color: white;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	display: inherit;
	text-align: left;
}

.menu-group {
	display: inherit;
	color: white;
	justify-content: flex-end;
	width: 60%;
	flex-direction: row;
	align-items: flex-end;
	font-family: "Adam";
}

.head_container {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-between;
	height: 20vh;
	margin-top: 0;
	padding-top: 0;
}

.logo img {
	width: 50%;
	height: auto;
}

.link-wrapper:last-child {
	margin-right: 50px;
}

.menu-group>span {
	margin-left: 10px;
	margin-right: 10px;
}

.hei70 {
	height: 80vh;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-end;  
}

.foot_container {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.ICO {
	width: 7vw;
	color: #fff;
	padding-bottom: 10vh;
	text-align: center;
	/*border:1px solid red;*/
}

.social-icon {
	width: 2em;
	height: 2em;
	display: inline-block;
}

.play-icon {
	width: 12px;
	height: auto;
	margin-right: 6px;
	vertical-align: middle;
	display: inline-block;
}

.content {
	color: white;
	font-family: "Adam";
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: center;
	align-items: center;
}

.section2 {
	justify-content: center;
	align-self: center;
}

.caratulas {
	flex-direction: column;
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
}

.linias_items {
	justify-content: center;
	align-self: center;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-wrap: wrap;
	max-width: 725px;
}

.items {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 240px;
	height: 240px;
	justify-content: center;
}

.items>a {
	display: block;
	text-decoration: none;
	vertical-align: middle;
}

.items>img {
	display: block;
}

.bottomlogo>img {
	width: 60px;
	height: auto;
	padding-bottom: 10vh;
	padding-top: 10vh;
}

.bottomlogo {
	width: 100%;
	display: flex;
	color: #b0b0b0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
}

.site-footer {
	margin-top: auto;
}

.portada {
	vertical-align: middle;
	width: 240px;
	height: 240px;
	object-fit: cover;
	display: block;
}

.spotify_content {
	margin-top: 5vh;
	display: flex;
	flex-direction: column;
}

.spotify_section {
	display: flex;
	flex-direction: row;
}

.playlist {
	width: 26vw;
	height: 60vh;
}

.follow {
	margin-bottom: 5vh;
}

.itemssub {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 240px;
	height: 268px;
	justify-content: center;
	padding: 15px;
}

.itemssub>a {
	display: block;
	text-decoration: none;
	vertical-align: middle;
	color: white;
}

.itemssub>img {
	display: block;
}

.itemssub>a>div {
	width: 100%;
	background-color: #1DB954;
	font-family: "Adam";
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}
.itemssub>a>div:hover{
	background-color: #11662f;
}
.liniasitemsmusic {
	justify-content: center;
	align-self: center;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-wrap: wrap;
	max-width: 850px;
}

.liniasitemsmusic>i {
	margin-right: 6px;
}

#cabezeracontact {
	height: 100%;
	background-image: url('contact.png');
	background-image: image-set(
		url('contact.webp') type('image/webp'),
		url('contact.png') type('image/png')
	);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #090909; /*#222;*/
	/*background-color:black;*/
	z-index: 0;
}

#cabezeracontact {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	z-index: 0;
}

#cabezeratour {
	height: 100%;
	background-image: url('tour.png');
	background-image: image-set(
		url('tour.webp') type('image/webp'),
		url('tour.png') type('image/png')
	);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #090909;
	z-index: 0;
}

#cabezeratour {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	z-index: 0;
}

.head_container,
.content,
.contentcontact,
.hei70,
.caratulas,
.bottomlogo,
.page-bio {
	position: relative;
	z-index: 1;
}

.title {
	justify-content: left;
	align-self: left;
}

.contentcontact {
	color: white;
	font-family: "Adam";
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: center;
	align-items: center;
	width: 100vw;
}

.contentcontact>div>h1 {
	font-family: "Adam";
}
.contentcontact>div>h3>a {
	color: white;
	text-decoration: none;
}
.contentcontact>div>h3>a:hover {
	color: #c9c9c9;
}

.contentcontact>div {
	align-self: center;
	align-items: center;
	width: 75vw;
	font-family: 'Open Sans', 'Helvetica', sans-serif;
}

.bottompegado {
	height: 20vh;
}

.cuerpopegado {
	height: 60vh;
}

.sinbordes>img {
	padding-bottom: 0;
	padding-top: 0;
}

/* For mobile devices */
@media only screen and (max-width:767px) {
	#cabezera {
		/* The file size of this background image is 93% smaller
		 * to improve page load speed on mobile internet connections */
		background-image: url('background.jpg');
		background-image: image-set(
			url('background.webp') type('image/webp'),
			url('background.jpg') type('image/jpeg')
		);
	}

	#cabezeracontact {
		/* The file size of this background image is 93% smaller
		 * to improve page load speed on mobile internet connections */
		background-image: url('contact.png');
		background-image: image-set(
			url('contact.webp') type('image/webp'),
			url('contact.png') type('image/png')
		);
	}

	#cabezeratour {
		background-image: url('tour.png');
		background-image: image-set(
			url('tour.webp') type('image/webp'),
			url('tour.png') type('image/png')
		);
	}

	.logo {
		width: 100%;
		margin-top: 0;
		justify-content: center;
		text-align: center;
	}

	.logo a {
		display: flex;
		justify-content: center;
	}

	.menu-group {
		width: 100%;
		justify-content: center;
		align-items: center;
	}

	.menu-group>span {
		margin-left: 5px;
		margin-right: 5px;
	}
	.link-wrapper:last-child {
		margin-right: 0;
	}

	.head_container {
		flex-direction: column;
	}

	.hero-overlay {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding-bottom: 0;
	}

	.hero-content {
		margin-bottom: 0;
	}

	.hero-socials {
		position: static;
		margin-top: 16px;
	}

	.playlist {
		width: 80vw;
		height: 80px;
	}

	.spotify_section {
		display: flex;
		flex-direction: column;
	}

	.ICO {
		padding-left: 8px;
		padding-right: 8px;
	}

	.foot_container {
		margin-bottom: 24px;
	}

	.bottomlogo {
		font-size: 12px;
		line-height: 1.6;
	}
}
/*
.loader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url('LOGOW_MINMIN.webp') 50% 50% no-repeat rgb(249,249,249);
	background-color: #222;
	opacity: 1;
	loading.io 
}
$(document).ready(function() {
	setTimeout(function(){
		$(".loader").fadeOut("slow");
	}, 3000);
});
*/
.hero-content {
	margin-bottom: 6vh;
}

.hero-socials {
	position: absolute;
	bottom: 14vh;
	left: 0;
	right: 0;
}

.hero-home .hero-socials {
	position: static;
	margin: 16px 0 0;
}
