/*
/* BASE
/* -------------------------------------------------- */

	@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700|Orbitron:400,500,700');
	@import url('http://weloveiconfonts.com/api/?family=fontawesome');

	*, ::after, ::before {
		margin: 0;
		box-sizing: border-box;
	}

	html { font-size: 100%;}
	body {
		font-family: 'Open Sans', sans-serif;
		background: linear-gradient(135deg, #1a1a1a, #111 70%);
		color: #e0e0e0;
		font-size: 1em;
		margin: 0;
		padding: 0;
	}

	a{color: #21a538;text-decoration:none;}

	a:hover{color: #197c2a;}

/*
/* HEADLINE
/* -------------------------------------------------- */

	h1, h2, h3, h4, h5, h6,
	.h1, .h2, .h3, .h4, .h5, .h6 {
		font-family: 'Orbitron', sans-serif;
	  font-weight: 700;
		text-transform: uppercase;
		margin: 1.25em 0 1.5em 0;
		color: #21a538;
	}

/*
/* HEADER
/* -------------------------------------------------- */

	.header {
		position: relative;
		background-size: 100% auto;
		padding: 1em 0;
		border-top: 5px solid #21a538;
		display: flex;
		flex-direction: column;
	}

	.header__top {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  padding: 1rem 2rem;
	}

	.logo-left,
	.logo-right {
	  width: 25%;
	  max-width: 200px;
	}

	.equalizer-wrapper {
	  flex-grow: 1;
	  display: flex;
	  justify-content: center;
	}

	.logo__img {
	  max-width: 100%;
	  height: auto;
	}

	.scream__img {
  	  width: 220px; 
  	  height: auto;
  	  transform: rotate(5deg);
  	  opacity: 0.9;
	}

	.logo {
		width: 80%;
		margin: 0 auto;
		display: flex;
		justify-content: center;
	}

	@media (min-width: 992px) {
		.logo {
			width: 100%;
			display: flex;
			justify-content: center;
		}
	}

	.logo__img {
	max-width: 100%;
	height: auto !important;
	}

/*
/* NAVIGATION
/* -------------------------------------------------- */

	.navbar {
		margin-top: 2em;
	  display: flex;
		justify-content: space-around;
	}

	@media (min-width: 992px) {
		.navbar {
			margin-top: 0;
			flex-direction: row;
			flex: 1;
    	justify-content: space-around;
		}
	}

	.navbar__list {
		display: flex;
		flex-direction: column;
		padding: 0;
	}

	@media (min-width: 768px) {
		.navbar__list {
			flex-direction: row;
			padding: 0;
		}
	}
	.navbar__item {
		display: block;
	  list-style: none;
		text-align: center;
		margin: 0px 20px 0 20px;
	}

	.navbar__link {
		display: block;
		font-family: 'Orbitron', sans-serif;
		font-weight: 700;
		color: #21a538;
		text-decoration: none;
		text-transform: lowercase;
		padding: 10px 20px 10px 20px;
		transition: .30s;
	}

	.navbar__link:hover {
		color: #197c2a;
		transition: .30s;
	}

	.navbar__link:after {
		content: '';
		display: block;
		margin: 5px auto 0 auto;
    height: 5px;
		width: 0px;
		background: transparent;
		transition: width .5s ease, background-color .5s ease;
	}

	.navbar__link:hover:after {
		width: 100%;
		background: #197c2a;
	}
	
	.navbar-separator {
	  width: 100vw; 
	  height: 5px;
	  background-color: #21a538;
	  margin: 2rem 0;
	  border: none;
	  padding: 0;
	  position: relative;
	  left: 50%;
	  right: 50%;
	  transform: translateX(-50%);
	}



/*
/* BLOCKQUOTE
/* -------------------------------------------------- */
	blockquote{
		font-size: 1.125em;
    width: 80%;
    margin: 50px auto;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    color: #000;
    padding: 1.2em 30px 1.2em 55px;
    border-left: 8px solid #197c2a;
    line-height: 1.6;
    position: relative;
    background: #21a538;
	}
	blockquote::before{
		font-family: 'Orbitron', sans-serif;
    content: "\201C";
    color: #000;
    font-size: 4em;
    position: absolute;
    left: 14px;
    top: -10px;
	}
	blockquote::after{content: '';}
	blockquote span{
		display: block;
    color: #197c2a;
    text-align: right;
    font-style: oblique;
    font-size: 0.75em;
    font-weight: bold;
    margin-top: 1em;
	}

/*
/* EQUALIZER
/* -------------------------------------------------- */

	.equalizer {
		position: absolute;
		text-align: center;
		top: 135px;
		width: 100%;
		height: 65px;
		overflow: hidden;
		z-index: -999;
	}

	@media (min-width: 480px) {
		.equalizer {
			top: 140px;
			height: 110px;
		}
	}

	@media (min-width: 768px) {
		.equalizer {
			top: 135px;
		}
	}

	.equalizer-column {
	  display: inline-block;
	  float: none;
	  padding: 0;
	  margin: 0 auto;
	}

	.dot {
	  width: 5px;
	  height: 5px;
	  margin: 2px 0;
	  background-color: rgba(33, 165, 56, 0.4);
	}
	@media (min-width: 480px) {
		.dot {
		  width: 10px;
		  height: 10px;
		}
	}

/*
/* CONTAINER & CONTENT
/* -------------------------------------------------- */
	
	
	.container {
	  width: 100%;
	  margin: 0 auto;
	  padding: 0 1rem;
	}

	@media (min-width: 1024px) {
	  .container {
	    width: 90%;
	    max-width: 1400px;
	    margin: 0 auto;
	  }
	}

	@media (min-width: 1600px) {
	  .container {
	    width: 85%;
	    max-width: 1600px;
	  }
	}


	.intro,
	.content,
	main,
	.quote-wrapper {
	  width: 100%;
	  margin: 0 auto;
	  padding: 0 1rem;
	}

	@media (min-width: 1024px) {
	  .intro,
	  .content,
	  main,
	  .quote-wrapper {
	    width: 90%;
	    max-width: 1400px;
	  }
	}

	.quote-wrapper {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	  gap: 2rem;
	  align-items: start;
	  justify-content: center;
	  padding: 2rem 0;
	}


	.centered {
	  text-align: center;
	}
	
	.intro p {
 	  margin-bottom: 1.5em;
      line-height: 1.6;
	}
	
	.link-grid {
	  display: flex;
	  justify-content: center; 
	  align-items: flex-start;
	  gap: 4rem;
	  flex-wrap: wrap;
	  margin: 2rem auto;
	  max-width: 800px; 
	}

	.quote-wrapper {
	  display: flex;
	  justify-content: center;
	  align-items: flex-start;
	  gap: 2rem;
	  flex-wrap: wrap;
	  margin: 3rem auto;
	  padding: 1rem;
	  max-width: 1000px;
	}

	.quote-wrapper blockquote {
	  flex: 2;
	  min-width: 250px;
	}

	.quote-wrapper .link-block {
	  flex: 1;
	  min-width: 250px;
	}

	.link-block {
	  flex: 1;
	  min-width: 250px;
	  padding: 1.5rem;
	  border: 2px solid #21a538;
	  border-radius: 8px;
	  box-shadow: 0 0 10px rgba(33, 165, 56, 0.2);
	  background-color: #161616; 
	  text-align: left;
	  transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	
	.link-block h3 {
  	  text-align: center;
	}

	.link-block:hover {
	  transform: translateY(-4px);
	  box-shadow: 0 0 15px rgba(33, 165, 56, 0.4);
	}

	.fun-facts {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 1rem;
	  margin: 2rem 0;
	  justify-content: center;
	}
	
	.fun-box {
	  background-color: #1a1a1a;
	  border: 2px solid #21a538;
	  border-radius: 6px;
	  padding: 1rem 1.5rem;
	  color: #e0e0e0;
	  font-family: 'Orbitron', sans-serif;
	  font-size: 0.95rem;
	  text-align: center;
	  transition: transform 0.3s ease, box-shadow 0.3s ease;
	  cursor: help;
	}
	
	.fun-box:hover {
	  transform: scale(1.03);
	  box-shadow: 0 0 10px rgba(33, 165, 56, 0.3);
	}

	
	.setup-grid {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 2rem;
	  justify-content: center;
	  margin: 2rem auto;
	}

	/* 2 Spalten fix – für z. B. VMs */
	.setup-grid.two-cols .setup-box {
	  flex: 1 1 calc(50% - 2rem);
	}

	/* 3 Spalten fix – z. B. HomeLab mit 3/2 */
	.setup-grid.three-cols .setup-box {
	  flex: 1 1 calc(33.333% - 2rem);
	}


	.setup-box {
	  flex: 1 1 300px;
	  background: #1a1a1a;
	  border: 2px solid #21a538;
	  border-radius: 8px;
	  padding: 1.5rem;
	  color: #e0e0e0;
	  box-shadow: 0 0 10px rgba(33, 165, 56, 0.2);
	  transition: transform 0.3s ease;
	}

	.setup-box:hover {
	  transform: translateY(-5px);
	  box-shadow: 0 0 15px rgba(33, 165, 56, 0.4);
	}
	
	.spoiler-card {
	  margin: 2rem auto;
	  background: #111;
	  border: 2px solid #21a538;
	  border-radius: 8px;
	  overflow: hidden;
	  padding: 0;
	  width: 100%;
	  max-width: 100%;
	}
	
	.spoiler-title {
	  display: block;
	  padding: 1rem;
	  background-color: #21a538;
	  color: #000;
	  font-weight: bold;
	  cursor: pointer;
	  font-family: 'Orbitron', sans-serif;
	  text-align: center;
	  transition: background 0.3s ease;
	}
	
	.spoiler-title:hover {
	  background-color: #197c2a;
	}
	
	.spoiler-content {
	  max-height: 0;
	  overflow: hidden;
	  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
	  padding: 0 1rem;
	}

	.spoiler-content > .setup {
	  margin: 0;
	  padding: 1rem 2rem;
	}

	.spoiler-toggle {
	  display: none;
	}
	
	.spoiler-toggle:checked + .spoiler-title + .spoiler-content {
	  max-height: 3000px;
	  padding: 1rem;
	}


	.spoiler-content table {
	  width: 100%;
	  border-collapse: collapse;
	  color: #ddd;
	}

	.spoiler-content th {
	  text-align: left;
	  padding: 0.5rem 0;
	  color: #21a538;
	}

	.spoiler-content td {
	  padding: 0.5rem 0;
	}


	/*
/* SESSION
/* -------------------------------------------------- */
	.session {
		margin: 15px -10px;

		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
	}

	.session__headline {
		margin: 0 0 1.5em 0;
		color: #000;
		font-size: 1em;
	}

	.session__date {
		font-family: 'Orbitron', sans-serif;
		color: #197c2a;
		font-size: 0.75em;
		padding-bottom: 1em;
		align-self: flex-end;
	}

	.session__box {
		width: 30%;
		padding: 10px;
    margin: 10px;

		background: #21a538;
		transition: .30s;

		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

/*
/* Details / Arcordion
/* -------------------------------------------------- */

.spoiler {
 transition: height 3s ease;
}

.spoiler:not([open]){
    height: 1.25em;
}

.spoiler {
    height: 2.50em;
}

.spoiler__title::-webkit-details-marker {
	display: none;
}

.spoiler__title:before {
	content: ""; /* Verwendung des "plus"-Symbols anstelle des Dreiecks */
}

/*
/* FOOTER
/* -------------------------------------------------- */

	.footer {
		background: #21a538 url("../img/logo_footer.png") no-repeat center 20px;
		text-align: center;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
    margin-top: 4em;
		padding: 2em 0;
    min-height: 22em;
	}

	.footer__box {
		display: flex;
		justify-content: space-between;
		flex-direction: row;
	}

	.footer__social{margin: 2em 0 1em 0;}
	.footer__img{margin: 1em 0 1em 0;}
	.footer__text{color: #fff; font-size: 0.75rem; margin: 1em 0 2em 0;}
	.footer__link{color: #fff;text-decoration: none; transition: .30s;}
	.footer__link:hover{color: #197c2a; transition: .30s;}

/*
/* BUTTON
/* -------------------------------------------------- */
	.btn {
	  font-family: 'Orbitron', sans-serif;
		font-weight: 500;
	  color: #fff;
	  font-size: 1rem;
	  background: #197c2a;
	  padding: 10px 20px 10px 20px;
	  text-decoration: none;
		transition: .50s;
		display: flex;
    justify-content: space-evenly;
	}

	.btn:hover {
		color: #000;
	  background: #197c2a;
		/* box-shadow: inset 0 0 10px #000000; */
	  text-decoration: none;
		transition: .50s;
	}

/*
/* TEXTMEDIA
/* -------------------------------------------------- */

	.textmedia {
		display: flex;
	}
	.textmedia__image {
		margin-left: 2em;
	}

/*
/* FIGURE
/* -------------------------------------------------- */
	.figure__img {
		width: 100%;
		height: auto;
	}

/*
/* LIST
/* -------------------------------------------------- */

	.list{padding: 10px 30px;}
	.list--enu{padding: 10px 30px;}
	.list__item{padding: 5px 0;}

/*
/* Div Tabellen
/* -------------------------------------------------- */

	.divTable{display: table;width: 100%;}
	.divTable__row {display: table-row;}
	.divTable__heading {background-color: #EEE;display: table-header-group;}
	.divTable__cell, .divTable__head {display: table-cell;padding: 3px 10px;}
	.divTable__heading {background-color: #EEE;display: table-header-group;font-weight: bold;}
	.divTable__foot {background-color: #EEE;display: table-footer-group;font-weight: bold;}
	.divTable__body {display: table-row-group;}

/*
/* SOCIAL
/* -------------------------------------------------- */

	.social {padding: 0;text-align: center;}

	.social__box {
		display: inline-block;
		width: 1.75em;
		height: 1.75em;
		margin: 0 10px;
		line-height: 1.75em;
		font-family: 'FontAwesome';
		font-size: 1.25em;
		text-align: center;
		color: #393939;
		background: white;
		overflow: hidden;
		cursor: pointer;
		transition: .30s;
	}

	.social__box:hover {
		transition: .30s;
		color: white;
	}

	#facebook:hover {background-color: #3a5795;}
	#twitter:hover {background-color: #00acee;}
	#youtube:hover {background-color: #FF3333;}
	#twitch:hover {background-color: #6441A4;}
	#deviantart:hover {background-color: #4E6252;}

/*
/* FORMS
/* -------------------------------------------------- */

	.formbox{padding:10px; background: #564a57;}
	:-moz-placeholder {color: #acb6c8 !important;}
	::-moz-placeholder {color: #acb6c8 !important;opacity: 1;}
	::-webkit-input-placeholder {color: #acb6c8;}
	:-ms-input-placeholder {color: #acb6c8;}
	::-moz-focus-inner {padding: 0 !important;border: 0 !important;}

	.formular input, .formular textarea{
		font-family: inherit;
		color: inherit;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.formular input[type=text], .formular input[type=password] {
		height: 35px;
		margin: 5px 0;
		padding: 0 15px 2px;
		font-size: 1em;
		background: white;
		border: 1px solid #ebebeb;
	}

	.formular textarea {
		width: 100%;
		height: 100px;
		margin: 5px 0;
		padding: 8px;
		font-size: 1em;
		background: white;
		border: 1px solid #ebebeb;
	}

	.formular input[type=text]:focus, .formular input[type=password]:focus, .formular textarea:focus {
		border-color: #41293f;
		outline: none;
	}

	.formular input[type=submit] {
		position: relative;
		vertical-align: top;
		height: 40px;
		padding: 0px 20px 0px 20px;
		font-size: 1em;
		color: white;
		font-weight:400;
		text-align: center;
		background: #41293f;
		border: none;
		cursor: pointer;
	}

	.formular input[type=submit]:active {
		top: 1px;
		outline: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	.lt-ie9 input[type=text], .lt-ie9 input[type=password] {
		line-height: 48px;
	}

	select, input[type=text], input[type=password], textarea{
		background: #fff;
		border-width: 1px;
		border-style:solid;
		display: inline-block;
		position: relative;
		overflow: hidden;
		height: 28px;
		color: #999;
		min-width: 150px;
		padding:3px 5px 3px 5px;
		border-radius: 3px;
	}
	input[type=submit]{
		cursor: pointer;
		padding:5px 10px;
		margin: 10px 0 0 0;
		color:#fff;
		border: 1px solid #41293f;
		background:#41293f;
	}

/*
/* WF2 – Wreckfest 2 SCNF Generator Styles
/* Version: 1.0
/* Author: DJ DaScream ✌️
/* -------------------------------------------------- */

.wf2-section {
  margin: 3rem auto;
  padding: 2rem 2rem 2.5rem 2rem;
  border: 2px solid #21a538;
  border-radius: 8px;
  background-color: #111;
  max-width: 800px;
  box-shadow: 0 0 12px rgba(33, 165, 56, 0.3);
}

.wf2-form .formgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}

.wf2-form .formgrid button {
  grid-column: span 2;
  margin-top: 1rem;
}

.wf2-form .formgrid label:last-of-type {
  margin-bottom: 0.5rem;
}

.wf2-form label {
  display: flex;
  flex-direction: column;
  font-family: 'Orbitron', sans-serif;
  color: #21a538;
  font-size: 0.9rem;
  gap: 0.4rem;
}

.wf2-form input,
.wf2-form label select {
  flex: 1;
  min-height: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #222;
  color: white;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 1rem;
}

.wf2-form input:focus,
.wf2-form select:focus {
  outline: none;
  border-color: #21a538;
  box-shadow: 0 0 6px rgba(33, 165, 56, 0.5);
}

.wf2-form button {
  width: 100%;
  background-color: #00ff00;
  color: black;
  font-weight: bold;
  border: none;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 0.3px;
}

.wf2-form button:hover {
  background-color: #00cc00;
}

/*
/* ENDE
/* -------------------------------------------------- */
