@charset "UTF-8";

/*
* CSS-Design
* Bandprojekt
* Online-Schule für Gestaltung: Webdesign-Kurs
*/

/* Farben 
#fced4f - gelb
#ff44d0 - rot
#ff44d0 - pink
#6b61f2 - blau

*/

/* Webfonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik+Distressed&display=swap');
@import url("https://use.typekit.net/qpe6dvc.css");



/* Abstände nullen */

* {
	margin: 0;
	padding: 0;
	-mozbox-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


body {
	font: 400 1.125rem/1.55 'roboto', Helvetica, Arial, sans-serif;
	padding: 0;
	background: url('../img/bg-website.jpg');
	/* Pfad zum Bild */
	background-size: cover;
	/* Das Bild füllt den gesamten Hintergrund */
	background-position: center;
	/* Das Bild ist zentriert */
	background-repeat: no-repeat;
	/* Das Bild wird nicht wiederholt */
	background-attachment: fixed;
	/* Das Bild bleibt beim Scrollen fixiert */
	min-height: 500px;
	margin: 0;
	/* Entfernt den Standard-Außenabstand, um das Bild randlos darzustellen */
	padding: 0;
	/* Entfernt den Standard-Innenabstand */
	height: 100%;
	overflow-x: hidden;
	/* Um sicherzustellen, dass keine Inhalte versehentlich über den Bildschirmrand hinausragen */
}



/* Layout */

.wrapper {
	max-width: 1250px;
	padding: 0 25px;
	margin: 0 auto;
}

.column {
	float: left;
	margin: 25px 0 25px 5%;
}

.column:first-child {
	margin-left: 0;
}

section {
	padding: 75px 0;
}


.no-gutter .column {
	margin: 0;
	padding: 60px;
}

.no-gutter .col_1_2 {
	width: 50%;
}

.no-gutter .col_1_3 {
	width: 33.33%;
}

.no-gutter .col_2_3 {
	width: 66.66%;
}

.no-gutter .col_1_4 {
	width: 25%;
}

.no-gutter .col_3_4 {
	width: 75%;
}


/* Clearfix */

.row:before,
.row:after {
	content: " ";
	display: table;
}

.row::after {
	clear: both;
}


/* Spalten */

.col_1 {
	width: 100%;
}

.col_1_2 {
	width: 47.5%;
}

.col_1_3 {
	width: 30%;
}

.col_2_3 {
	width: 65%;
}

.col_1_4 {
	width: 21.25%;
}

.col_3_4 {
	width: 73.75%;
}

/* Typo */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "chorine-large", sans-serif;
	letter-spacing: 1px;
	text-align: center;
	margin: 20px 0 30px 0;
	color: #fced4f;
	line-height: 1.4;
}

h1 {
	font-size: 4rem;
	/* 58px; */
	margin-bottom: 5px;
	font-weight: 600;
	line-height: 1.2;
}

h2 {
	font-size: 3rem;
	/* 34px; */
	font-weight: 600;
}

h3 {
	font-size: 1.75rem;
	/* 28px; */
}

h4 {
	font-size: 1.5rem;
	/* 24px; */
}

h5 {
	font-size: 1.375rem;
	/* 22px; */
}

h6 {
	font-size: 1.250rem;
	/* 20px; */
}

a {
	color: #fced4f;
}

a:hover {
	color: #fff;
}

p {
	text-align: center;
	color: #fced4f;

}


.zentrieren {
	padding: 20px 0px;
	text-align: center;
	align-content: center;
}

.button {
	background: #6b61f2;
	border: solid 12px #6b61f2;
	font-size: 2rem;
	font-family: "chorine-large", sans-serif;
	color: #fff;
	padding: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
}

.button:hover {
	border: solid 6px #FFF;
}


/* Hero */

.hero {
	padding: 0;
	margin: 0;
}

.hero img {
	width: 100%;
	height: auto;
}

#hero-music{
	padding: 20px 0 100px 0;
}

/* to top-Button */

table {
	border-spacing: 0;
}

#player {
	background: #ff44d0;
	border-radius: 15px;
	min-width: 100px;
	max-width: 390px;
	margin: 0 auto 70px auto;
	padding: 0px 20px 10px 20px;
}

#player td {
	padding: 20px 0;
	border-top: 1px solid rgba(256, 256, 256, 1);

}

#player .first-row td {
	border-top: 1px solid rgba(0, 0, 0, .0);
}

#player a {
	display: inline-block;
	width: 108px;
	background: #6b61f2;
	border: solid 6px #6b61f2;
	font-size: 1.25rem;
	font-family: "chorine-large", sans-serif;
	font-weight: 500;
	color: #fff;
	padding: 10px;
	margin-left: 15px;
	text-decoration: none;
}

#player img {
	min-width: 180px;
	max-width: 200px;
	padding-right: 25px;
}

#player a:hover {
	background: #6b61f2;
	border: solid 6px #FFF;
	font-size: 1.25rem;
	font-family: 'Chorine-large';
	color: #fff;
	padding: 10px;
	font-weight: 500;
	margin-left: 15px;
}


/* Footer */

footer {
	display: flex;
	justify-content: center;
	/* Zentriert das Bild horizontal */
	width: 100%;
	background: #ff44d0;
	background-size: cover;
	padding: 50px 50px 150px 50px;
	text-align: center;
	margin: 0;
}

footer h2,
footer p,
footer a {
	text-align: center;
	color: #fced4f;
	text-decoration: none;
}


@media only screen and (max-width: 950px) {

	.col_1_2,
	.col_1_3,
	.col_2_3,
	.col_1_4,
	.col_3_4,
	.no-gutter .col_1_2,
	.no-gutter .col_1_3,
	.no-gutter .col_2_3,
	.no-gutter .col_1_4,
	.no-gutter .col_3_4 {
		width: 100%;
	}

	.column {
		width: 100%;
		float: none;
		margin: 0;
	}

	.wrapper {
		max-width: 100%;
		padding: 0;
	}

	footer {
		display: flex;
		justify-content: center;
		/* Zentriert das Bild horizontal */
		background: #ff44d0;
		background-size: cover;
		width: 100%;
		margin: 0;
		padding: 40px 0;
	}

	footer h2 {
		text-align: center;
	}

	section {
		padding: 0px 0;
	}

	header h1 {
		font-size: 3rem;
		line-height: 3rem;
	}

	h1 {
		font-size: 3rem;
		line-height: 3rem;
	}

	#nl-h1 {
		display: none;
	}

	.hero {
		display: flex;
		justify-content: center;
		/* Zentriert das Bild horizontal */
	}

	.hero img {
		content: url("../img/hero-mobil.png");
		max-width: 390px;
		height: auto;
		/* Beibehaltung des Seitenverhältnisses */
	}




	/* Druckformatierung */

	@media print {

		header,
		footer {
			display: none;
		}

		p,
		blockquote {
			font-family: Arial, sans-serif;
			font-size: 10pt;
		}

		h1,
		h2,
		h3,
		h4,
		h5,
		h6 {
			font-family: Arial, sans-serif;
			font-size: 18pt;
			color: #000;
			font-style: normal;
		}

		section {
			padding: 0;
		}
	}
}