/* Referenzen-Kachel-Inhalt immer über Overlay */
.reference-tile-content {
	position: relative;
	background-color: rgba(255, 255, 255, 0.7);
	padding: 1.2rem 0.4rem;
	z-index: 2;
}

/* My-Apps-Kachel-Inhalt immer über Overlay */
.myapps-tile-content {
	position: relative;
	background-color: rgba(255, 255, 255, 0.7);
	padding: 1rem 0.4rem;
	z-index: 2;
}

/* Typography */
:root {
	--brand-primary: #0d6efd;
	--brand-dark: #0b0f19;
	--brand-muted: #a6b0c3;
body {
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Hero */
.bg-gradient-dark {
	background:
		linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
		url(../images/header.png),
		radial-gradient(1200px 600px at 80% -20%, rgba(13,110,253,.25), transparent 60%),
		linear-gradient(180deg, #0b0f19 0%, #12172a 100%);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.hero-glass {
	width: 320px;
	height: 320px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.hero-shape {
	position: absolute;
	inset: 0;
	background: radial-gradient(600px 300px at 10% 10%, rgba(255,255,255,.06), transparent 60%);
	pointer-events: none;
}

/* Utilities */
.pt-6 { padding-top: 6rem; }
.text-light-50 { color: rgba(255,255,255,.7); }

/* Referenzen-Kacheln */
.reference-tile {
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(.4,0,.2,1);
	min-height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 6px 24px rgba(0,0,0,0.12), 0 1.5px 6px rgba(0,0,0,0.10);
}
}
.reference-tile::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0.35);
	transition: background 0.3s cubic-bezier(.4,0,.2,1);
	z-index: 1;
	pointer-events: none;
}
.reference-tile:hover {
	transform: scale(1.06);
}
.reference-tile:hover::before {
	background: rgba(255,255,255,0.0);
}
.reference-tile a {
	position: relative;
	z-index: 2;
	color: #212529 !important;
}
.reference-tile h5, .reference-tile small {
	color: #212529 !important;
	margin: 0;
}
.reference-tile h5 {
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
	font-weight: 600;
}
.reference-tile small {
	font-size: 1rem;
	opacity: 0.8;
}

/* My-Apps-Kacheln */
.myapps-tile {
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(.4,0,.2,1);
	min-height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 6px 24px rgba(0,0,0,0.12), 0 1.5px 6px rgba(0,0,0,0.10);
}

.myapps-tile::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0.35);
	transition: background 0.3s cubic-bezier(.4,0,.2,1);
	z-index: 1;
	pointer-events: none;
}
.myapps-tile:hover {
	transform: scale(1.06);
}
.myapps-tile:hover::before {
	background: rgba(255,255,255,0.0);
}
.myapps-tile a {
	position: relative;
	z-index: 2;
	color: #212529 !important;
}
.myapps-tile h5, .myapps-tile small {
	color: #212529 !important;
	margin: 0;
}
.myapps-tile h5 {
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
	font-weight: 600;
}
.myapps-tile small {
	font-size: 1rem;
	opacity: 0.8;
}

/* Fixed Footer */
.fixed-bottom {
	position: fixed !important;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	box-shadow: 0 -2px 10px rgba(0,0,0,.1);
}

/* Add bottom padding to body to prevent content overlap */
body {
	padding-bottom: 80px;
}

.cookie-banner {
	position: fixed;
	left: 0; right: 0; bottom: 80px; /* Above fixed footer */
	background: rgba(11,15,25,.95);
	color: #fff;
	padding: 12px 0;
	z-index: 1080;
}
.cookie-banner[hidden] { display: none !important; } 