@font-face {
	font-family: 'Font Awesome';
	font-style: normal;
	font-weight: 900;
	src: url("fonts/fa-solid-900.woff2") format("woff2"), url("fonts/fa-solid-900.ttf") format("truetype");
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url("fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 900;
	src: url("fonts/Roboto-Black.ttf") format("truetype");
}

body {
	color: #1f1f1f;
	background: #f1f1f1;	
	-webkit-font-smoothing: antialiased;
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}

/* Zentrierung Container */
.content {
	display: flex;
	flex-direction: column;
	justify-content: center; /* vertikal zentriert */
	align-items: center;     /* horizontal zentriert */
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	padding: 32px;
	box-sizing: border-box;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #1f1f1f;
	max-width: 600px; /* schmalerer Content */
	margin: 0 auto;
	
	

}

/* Logo in Originalfarben, SVG-Gradient erhalten */
.logo {
	width: 200px;
	height: auto;
	margin: 0 0 32px 0; /* Abstand nach unten für Text */
	padding: 0;
	box-sizing: border-box;
	transition: all 0.2s ease-out;
}

.logo svg {
	width: 100%;
	height: 100%;
	fill: #101010; /* keine globale Füllung, Originalfarben bleiben */
}

.logo svg #icon {	 
	fill: url(#gradient); /* Gradient bleibt aktiv */
}

/* Überschrift und Text zentriert */
h1 { 
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2em; 
	text-align: center;
	letter-spacing: 0.01em;
	color: #1f1f1f;
	padding: 0;
	margin: 0 0 16px 0;
}

p {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em; 
	text-align: center;
	color: #1f1f1f;
	margin: 0 0 32px 0; /* mehr Abstand vom unteren Rand */
}

/* Slogan falls unten zusätzlich nötig */
.slogan {
	position: absolute;
	bottom: 80px; /* weiter weg vom unteren Rand */
	width: 100%;
	text-align: center;
}
 

a {
  	color: #1f1f1f;
	outline: none;
	text-transform: none;
	text-decoration: underline;	
}

a:hover {
	color: #000 !important;
	cursor: pointer;
}

/* Login-Styles bleiben unverändert */
.login {
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	padding: 32px;
	box-sizing: border-box;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	opacity: 0;
	z-index: 9999 !important;
	transition: all 0.2s ease;
}

.login.active {
	background: #1f1f1f;
	opacity: 1;
}

.login form {
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.login #login_error, 
.login .message {
	font-size: 10px !important;
	border-left: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	text-transform: uppercase;
}

.login input[type="text"],
.login input[type="password"],
.login form input[type=checkbox] {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #dcdcdc !important;
	letter-spacing: 0.02em;
	border: 2px solid #000 !important;
	background: #000;
	width: 100%;
	appearance: none;
	border-radius: 0 !important;
	box-shadow: none !important;
}

#user_login,
#user_pass {
	margin-bottom: 20px;
}

.login form input[type=checkbox] {
	width: 15px !important;
	height: 15px !important;
	background: #fff;
}

input[type="checkbox"]:checked {
	background: #000 !important;
}

input[type=checkbox]:checked:before {
	content: '' !important;
}

.login .button-primary {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-style: normal;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: .04em;
	width: 100%;
	background-color: transparent;
	border: 2px solid #000;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 8px;
	display: block;
	line-height: 1.5em;
	padding: .5em 3em;
	box-sizing: border-box;
	transition-duration: 0.2s;
}

.login .button-primary:hover {
	border: 2px solid #1f1f1f;
	color: #f1f1f1;
	background-color: #37363e;
	cursor: pointer;
	padding: .5em 5em;
}

.main-navigation-btn {
	width: 40px;
	height: 40px;
	position: fixed;
	background: none;
	top: 20px;
	right: 20px;
	float: left;
	z-index: 1000001;
	cursor: pointer;
	text-align: center;
	line-height: 48px;
	transition: all 0.2s ease;
}

.main-navigation-btn .icon:before { 
	font: 900 normal 20px/1em 'Font Awesome';
	content: "\f6be";	 
	vertical-align: 3px;
}

.main-navigation-btn .icon.active {
	display: none;
}

.main-navigation-btn:hover > .icon {
	color: #000;
}

#overlay {
	background: 0 0 rgba(0, 0, 0, .8);
	height: 100%;
	display: none;
	position: fixed;
	top: 0; 
	left: 0;
	width: 100%;
	z-index: 99;
}

@media only screen and (max-width: 768px)  {
	h1 {font-size: 30px;}
	
	.login {
		top: auto;
		bottom: 0;
		width: 100% !important;
	}
}
