/**
 * Pokate Bestellsystem – Frontend-Styles
 *
 * Startseite / Landing Page für nicht eingeloggte Besucher.
 */

/* =========================================================================
   Reset & Base
   ========================================================================= */

.pokate-landing {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background: #f8f9fa;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* =========================================================================
   Landing Page Layout
   ========================================================================= */

.pokate-landing-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.pokate-landing-content {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	padding: 48px 56px;
	max-width: 640px;
	width: 100%;
	text-align: center;
}

.pokate-landing-content h1,
.pokate-landing-content h2,
.pokate-landing-content h3 {
	color: var(--pokate-accent, #0073E6);
	font-weight: 600;
	margin-top: 0;
}

.pokate-landing-content h2 {
	font-size: 1.8em;
	margin-bottom: 0.5em;
}

.pokate-landing-content p {
	color: #555;
	margin-bottom: 1em;
}

.pokate-landing-content a {
	color: var(--pokate-accent, #0073E6);
	text-decoration: none;
}

.pokate-landing-content a:hover {
	text-decoration: underline;
}

/* =========================================================================
   Footer / Login-Link
   ========================================================================= */

.pokate-landing-footer {
	margin-top: 32px;
	text-align: center;
}

.pokate-login-link {
	display: inline-block;
	padding: 10px 32px;
	background: var(--pokate-accent, #0073E6);
	color: #fff !important;
	border-radius: 6px;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.2s ease, transform 0.1s ease;
}

.pokate-login-link:hover {
	background: var(--pokate-color-4, #2546F0);
	transform: translateY(-1px);
}

.pokate-login-link:active {
	transform: translateY(0);
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media screen and (max-width: 600px) {
	.pokate-landing-content {
		padding: 32px 24px;
		border-radius: 8px;
	}

	.pokate-landing-content h2 {
		font-size: 1.4em;
	}

	.pokate-landing-wrapper {
		padding: 20px 12px;
	}
}
