/* ----------------- generelle Angaben--------------------------------------------------------------- ---------------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* ----------Font Orbitron -----------------------------------------------------------------------------*/
@font-face
	{

	    font-style: normal;
		font-weight: 700;
		font-display: swap;
		font-family: "Orbitron";
		src: local('Orbitron'),
		url("/fonts/orbitron/orbitron600.woff2") format("woff2");
		unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
	}


@font-face
	{
		font-family: 'Orbitron';
		font-weight: 400;
		font-display: swap;
		src: local('Orbitron'),
		url("/fonts/orbitron/orbitron400.woff2") format("woff2");
		unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
	}

:root {
	--page-bg: #03050c;
	--surface: #0f1325;
	--surface-soft: #141b35;
	--accent: #566aee;
	--accent-strong: #7f90ff;
	--accent-dark: #2d377c;
	--text: #f5f7ff;
	--muted: #b7bfdc;
	--border: rgba(127, 144, 255, 0.42);
	--shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
	--inner-glow: inset 0 0 24px rgba(86, 106, 238, 0.24);
	--radius: 8px;
	--type-small: 0.875rem;
	--type-base: 1rem;
	--type-large: 1.125rem;
	--type-heading: 1.5rem;
	--type-display: clamp(2rem, 5vw, 2.5rem);
	--line-tight: 1.2;
	--line-body: 1.55;
	--line-roomy: 1.65;
}

* {
	box-sizing: border-box;
}

html {
	background: var(--page-bg);
}

.orbF /* Orbitron fett*/
	{
		font-family: "Orbitron",sans-serif;
		font-weight:600;
	}

.orb /* Orbitron normal*/
	{
		font-family: "Orbitron",sans-serif;
		font-weight:400;
	}

@font-face
	{

	    font-style: normal;
		font-weight: 400;
		font-display: swap;
		font-family: "Montserrat";
		src: local('Montserrat'),
		url("/fonts/Montserrat/Montserrat-Medium-subset.woff2" ) format("woff2");
		unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
	}


.impressumPrivacyButton {
	display: block;
	margin: 10px;
	border: solid 1px rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	padding: 5px;
	text-align:center;
}

#impressum {
	margin-bottom: 100px !important;
}

/* ---------- mehrfach verwendete Style-Angaben ------------------------------------------------------------------------*/
body
	{
		overflow-x: hidden;
		background-color: var(--page-bg);
		background-image: linear-gradient(180deg, #010208 0%, #070b1a 45%, #02040a 100%);
		background-attachment: fixed;
		color: var(--text);
		margin: 0px;
		padding: 0px;
		box-sizing: border-box;
		font-weight: 450;
		font-family: "Ubuntu Sans", sans-serif;
		font-size: var(--type-base);
		line-height: var(--line-body);
		min-height: 100vh;
		text-rendering: optimizeLegibility;

	/*
		background: rgb(0,0,0);
		background: linear-gradient(70deg, rgba(0,0,0,1) 0%, rgba(18,24,59,1) 100%);
		background-repeat: no-repeat;
		background-attachment: fixed;
	 */
	}
@media screen and (max-width: 800px) {
    body {
        padding-left: 0;
        padding-right: 0;
    }
}
.articleText p {
	margin-bottom: 8px;
	margin-top: 8px;
}

a:link {
	text-decoration:none;
}
a:visited {
	text-decoration:none;
}
a:hover {
	text-decoration:none;
}
a {
	color: var(--text);
	transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
a:hover {
	color: var(--accent-strong);
}
a:focus-visible,
.buttonMainPage:focus-visible,
.menuItem:focus-visible {
	outline: 2px solid var(--accent-strong);
	outline-offset: 3px;
}

.dontDrag /* verhindert, dass am Handy Bilder oder Icons in den Drag&Drop-Modus schalten */
	{
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-o-user-select: none;
		user-select: none;
		-webkit-user-drag: none;
		-khtml-user-drag: none;
		-moz-user-drag: none;
		-o-user-drag: none;
		user-drag: none;
	}

/* Hover Effekte */

.emphasize
	{
		padding: 0vw;
		box-shadow: 0px 0px 0px #00000000;
		background-image: linear-gradient(#000000 75%, #000000 100%);
		transition: box-shadow 0.7s, background-image 0.5s;
	}

.emphasize:hover
	{
		box-shadow: 0px .1vmax .2vmax #00000066;
		background-image: linear-gradient(#fafcff 75%, #f2f4ff 100%);
	}


/* vordefinierte Grids */

.fineGrid
	{
		display: grid;
		width:100%;
		margin-top: 1vw;
		column-gap: 1vw;
		row-gap: 0.2vw;
		grid-template-columns:100%;
	}

.fiveCellGrid
	{
		display: grid;
		width:100%;
		margin-top: 1vw;
		column-gap: 1vw;
		row-gap: 0.2vw;
		grid-template-columns:100%;
	}


.collapsible {
	background-color: var(--surface);
	color: var(--text);
	margin: auto;
	cursor: pointer;
	padding: 10px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: var(--type-large);
	max-width: 768px;
	display: block;
}

div {
	/*max-width: 900px;*/
	text-align: left;
	margin: auto;
}

.collapsible::before {  content: "+ "; }

.active {  background-color: blue; outline: solid white 1px;  }

.collapsible.active::before { content: "- "; }

.content {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    display: block;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 0 18px;
    background-color: var(--surface);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

#servicesMainPage {
	/*border: 1px rgb(86, 106, 238) solid;*/
	background-color: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin: 30px auto;
	box-shadow: var(--shadow), var(--inner-glow);

	background: linear-gradient(180deg, rgba(31, 42, 91, 0.95) 0%, rgba(9, 13, 30, 0.98) 100%);
}
#gpuSvg {
	width: 60px;
	margin: auto;
}
svg {
	color: var(--accent-strong);
}

#mainWrap {
	width: min(100% - 24px, 960px);
	max-width: none;
}

.buttonMainPage {
	display: block;
	border-radius: var(--radius);
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 10px 16px;
	text-align: center;
	font-weight: bold;
	font-size: var(--type-large);
	color: var(--text);

	background-color: var(--surface-soft);
	border: 1px solid var(--border);
	cursor: pointer;
	align-content: center;

	box-shadow: var(--inner-glow);
	transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.buttonMainPage:hover {
	background-color: var(--accent-dark);
	border-color: var(--accent-strong);
	box-shadow: inset 0 0 28px rgba(127, 144, 255, 0.28), 0 8px 22px rgba(0, 0, 0, 0.28);
	transform: translateY(-1px);
}

/* ----------------- Einstellungen für mobile Geräte (mobile first), Grundeinstellung für alle Geräte ---------------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* ----------------- Logo-Zeile und Buttons ------------------------------------------------*/
.companyLogo
	{
		display: flex;
		width: min(72vw, 560px);
		max-width: 560px;
		max-height: 100px;
		height: auto;
		margin: 42px auto 34px;
	}

.iconBox
	{
		height: 100%;
		display: flex;
		flex-direction: column;
		gap: 0.3vmax;
		align-items: center;
		justify-content: space-between;
	}

.longIcon
	{
		height: 4vw;
		min-height: 2em;
		width: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		filter: drop-shadow(0px 0px 0px #00000000);
		transition: filter 0.3s;
	}

.longIcon:hover
	{
		filter: drop-shadow(0px .1em .3em #00000088);
	}

.show_hide
	{
		display: flex; /* => show */
	}

.button
	{
		opacity:0.5;
		transition: opacity 0.3s;
	}
.button:hover
	{
		opacity:1.0;
	}

.ico
	{
		width: 2.2vmin;
		min-width: 2em;
	}


/* ------------ Main menu ----------------------------------------------------------------------*/
#headerMenu {
	display: flex;
	justify-content: space-evenly;
	overflow: visible;
	position: relative;
	border-radius: var(--radius);
	padding: 12px;
	background-color: rgba(14, 16, 38, 0.92);
	margin-bottom: 32px;
	border: 1px solid var(--border);
	box-shadow: var(--shadow), var(--inner-glow);

	background: linear-gradient(135deg, rgba(11, 14, 31, 0.98) 0%, rgba(42, 53, 125, 0.88) 100%);
}
.sponsorNote {
	padding: 12px 16px;
	margin: -12px auto 26px;
	background-color: rgba(20, 27, 53, 0.82);
	border: 1px solid var(--border);
	border-left: 3px solid var(--accent-strong);
	border-radius: var(--radius);
	box-shadow: var(--inner-glow);
	text-align: center;
	font-size: var(--type-base);
	line-height: 1.45;
}
.sponsorNote a {
	color: var(--accent-strong);
	font-weight: 700;
}
.menuItem {
	border-radius: 6px;
	text-align: center;
	padding: 8px 12px;
	color: var(--text);

	font-family: "Orbitron", Helvetica, sans-serif;
	font-size: var(--type-large);
	font-weight: bold;
	line-height: var(--line-tight);

	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.menuItem:hover,
.splattingMenu.open .splattingMenuTrigger {
	background-color: rgba(86, 106, 238, 0.9);
	color: white;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
	transform: translateY(-1px);
}
.selectedMenuItem {
	background-color: rgba(255, 255, 255, 0.1);
	outline: 1px solid rgba(255, 255, 255, 0.85);
}
.splattingMenu {
	margin: 0;
	position: relative;
}
.splattingMenuTrigger {
	appearance: none;
	background: transparent;
	border: 0;
	cursor: pointer;
}
.splattingDropdown {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 30;
	display: grid;
	gap: 4px;
	min-width: 210px;
	padding: 8px;
	background: linear-gradient(180deg, rgba(14, 16, 38, 0.98), rgba(24, 31, 72, 0.98));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow), var(--inner-glow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	visibility: hidden;
}
.splattingMenu.open .splattingDropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}
.splattingDropdownItem {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	color: var(--text);
	font-family: "Orbitron", Helvetica, sans-serif;
	font-size: var(--type-base);
	font-weight: 700;
	line-height: var(--line-tight);
	white-space: nowrap;
}
.splattingDropdownItem:hover,
.selectedSubmenuItem {
	background-color: rgba(86, 106, 238, 0.9);
	color: white;
}

@media screen and (max-width: 800px) {
	#headerMenu {
		flex-direction: column;
		align-items: center;
        padding: 8px;
	}

	#headerMenu > .menuItem:not(:last-child),
	#headerMenu > .splattingMenu:not(:last-child) {
        margin-bottom: 5px;
    }
	#headerMenu > .menuItem,
	.splattingMenu,
	.splattingMenuTrigger {
		width: 100%;
	}
	.splattingMenuTrigger {
		margin-bottom: 0;
	}
	.splattingDropdown {
		display: none;
		position: static;
		width: 100%;
		min-width: 0;
		margin-top: 6px;
		box-shadow: var(--inner-glow);
		transform: none;
	}
	.splattingMenu.open .splattingDropdown {
		display: grid;
		transform: none;
	}
}

#apis_in_image {
	display: flex;
	flex-direction: column;
	gap: 10px;
	backdrop-filter: blur(8px);
	background-color: rgba(4, 7, 18, 0.68);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	margin: 0;
	padding: 12px 18px;
}
#apis_in_image a {
	color: var(--text);
}

/* ------------Hero-Pic und Viewer ----------------------------------------------------------------------*/

.heroPicture
	{
		grid-column: 1 / 2;
		grid-row:    1 / 2;
		margin-top: 0.2em ;
		width:100%;
	}
.viewer
	{
		grid-column: 1 / 2;
		grid-row:    1 / 2;
		margin-top: 0.2em ;
		width:100%;
		height: 30vmax;
		border: 0;
		border-radius: var(--radius);
		box-shadow: var(--shadow);
		background-color: var(--surface);
	}

.heroPic
	{
		width: 100%;
		display: block;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: var(--radius);
		box-shadow: var(--shadow);
		object-fit: cover;
	}

/* ------------ TextSection -------------------------------------------------------------------------*/
.articleHeader
	{
	    text-align: center;
		padding: 0.5vw;
		margin: 36px 0 12px;
		color: var(--text);
		font-size: var(--type-heading);
		line-height: 1.25;
	}

.articleText
	{
		text-align: justify;
		font-size: var(--type-large);
		color: var(--muted);
		line-height: var(--line-roomy);
		margin-bottom: 2vmin;
	}
.articleText a {
	color: var(--accent-strong);
}

.techFocusBlock {
	text-align: left;
	padding: 22px;
	background: linear-gradient(180deg, rgba(20, 27, 53, 0.86), rgba(7, 10, 22, 0.94));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--inner-glow);
}
.techFocusBlock p:first-child {
	margin-top: 0;
}
.techFocusBlock p:last-child {
	margin-bottom: 0;
}
.techPillRow {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
	justify-content: space-between;
}
.techPillRow span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 6px 10px;
	color: var(--text);
	background-color: rgba(86, 106, 238, 0.16);
	border: 1px solid rgba(127, 144, 255, 0.34);
	border-radius: 6px;
	font-size: var(--type-small);
	font-weight: 700;
	line-height: var(--line-tight);
}
.projectHighlightButton {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	margin-top: 18px;
	background: linear-gradient(135deg, rgba(31, 42, 91, 0.98), rgba(86, 106, 238, 0.86));
	font-size: var(--type-large);
	line-height: 1.25;
}
.projectHighlightButton:hover {
	background: linear-gradient(135deg, rgba(35, 47, 102, 0.98), rgba(127, 144, 255, 0.9));
}
.techLinkRow {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 12px;
}
.techLinkRow .buttonMainPage {
	margin: 0;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* -------------Footer -----------------------------------------------------------------------------------*/
.footerM
	{
		grid-column: 1 / 2;
		grid-row:    2 / 3;
	}


/** neues contactform von Thomas */
#contactus {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
	width: min(100% - 24px, 960px);
    max-width: none;
    z-index: 20;
}
.contactForm {
    display: flex;
	flex-wrap: wrap;
    align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 12px;

    background-color: rgba(14, 16, 38, 0.94);
	backdrop-filter: blur(12px);
    border: 1px solid var(--border);
	border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
	box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.34), var(--inner-glow);
}
.contactFormHeader {
    display: inline;
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    font-size: var(--type-heading);
    text-align: center;
}
.contactForm a {
    display: inline-block;
    font-size: var(--type-small);
	font-weight: bold;
    padding: 5px;
    text-decoration: none;
    text-align: center;
    margin: 10px;
    min-width: 100px;
}
.contactFormButtonContainer {
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
}
.contactForm .buttonMainPage {
	max-width: 150px;
	flex-grow: 1;
}

@media screen and (max-width: 800px) {
	.contactForm {
		justify-content: center;
		gap: 10px;
		padding: 10px;
	}
	.contactFormHeader {
		display: none;
	}
	.contactForm {
		border-radius: 0;
		border-left: none;
		border-right: none;
	}
	.contactForm a {
		font-size: var(--type-small);
		font-weight: bold;
		min-width: 0;
	}
	.contactForm .buttonMainPage {
		flex: 1 1 88px;
		margin: 0;
		width: auto;
		padding: 5px 0;
		max-width: unset;
	}

	.articleHeader {
		margin-top: 30px;
		margin-bottom: 10px;
	}

	.articleText {
		text-align: left;
	}
}



a {
	color: var(--text);
}

#impressum {
	font-size: var(--type-small);
}
#impressum a {
	text-decoration: underline;
}
#impressum div {
	text-align: center;
}
.impressumEntry {
	height: 20px;
}

#servicesMainPage {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: auto;
	padding: 28px;
	gap: 28px;
}
.serviceEntry {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 0;
}
.serviceEntry h3 {
	margin-bottom: 0;
	color: var(--text);
	line-height: 1.25;
}
.serviceEntry p {
	color: var(--muted);
	margin-bottom: 0;
}
.serviceEntry svg, .serviceEntry img {
	width: 60px;
	height: 60px;
}
@media screen and (max-width: 900px) {
	#servicesMainPage {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media screen and (max-width: 800px) {
	#servicesMainPage {
		display: flex;
		flex-direction: column;
		gap: 10px;
		padding: 22px;
	}
	.techLinkRow {
		grid-template-columns: 1fr;
	}
}

.dataprivacy {
	width: min(100% - 32px, 900px);
	margin: clamp(32px, 8vw, 96px) auto !important;
	padding: clamp(18px, 4vw, 32px);
	color: var(--muted);
	background: linear-gradient(180deg, rgba(20, 27, 53, 0.96), rgba(8, 11, 24, 0.98));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.dataprivacy h3 {
	color: var(--text);
}
.dataprivacy a {
	color: var(--accent-strong);
}
