@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;500;700&display=swap");

:root {
	--primary: #38bcb1;
	--navy: #002a47;
	--cream: #efe6dc;
	--soft: #f1ebe4;
	--yellow: #f5ce01;
	--ink: #0b1220;
	--muted: #6a7a8a;
	--ok: #1a7f37;
	--err: #b00020;
	--focus: 0 0 0 3px rgba(56, 188, 177, .35);
	--radius: 16px;
}

* {
	box-sizing: border-box
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	color: var(--navy);
	background: var(--cream);
	line-height: 1.5;
}

a {
	color: var(--primary);
	text-decoration: none
}

img {
	max-width: 100%;
	display: block
}

.container {
	max-width: 980px;
	margin: 0 auto;
	padding: 24px
}

/* Brandbar mit Logo */
.brandbar {
	background: var(--primary);
	position: sticky;
	top: 0;
	z-index: 1000;
}

#jobs, #bewerbung {
	scroll-margin-top: 72px;
}


.brandbar .container {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 12px;
	padding-bottom: 12px
}

.brandbar a {
	display: inline-flex;
	align-items: center
}

.brand-logo {
	height: 44px;
	width: auto
}

@media (max-width:480px) {
	.brand-logo {
		height: 36px
	}
}

/* Lucide Icons base */
.icon {
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle
}

/* Hero */
.hero {
	background: linear-gradient(135deg, var(--soft), #fff);
	border-bottom: 1px solid #e6e0d9
}

.hero .wrap {
	display: grid;
	gap: 18px;
	grid-template-columns: 1.1fr
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	font-weight: 600;
	font-size: 14px
}

.h1 {
	font-size: clamp(28px, 5vw, 44px);
	line-height: 1.1;
	margin: 8px 0 6px
}

.sub {
	color: var(--muted);
	font-size: clamp(15px, 2.5vw, 20px)
}

.cta {
	display: inline-flex;
	gap: .5rem;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	color: var(--navy);
	padding: 14px 18px;
	border-radius: 12px;
	font-weight: 700;
	border: 0;
	cursor: pointer;
	transition: transform .06s ease, box-shadow .2s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .08)
}

.cta:hover {
	transform: translateY(-1px)
}

/* Accordion */
.accordion {
	margin: 28px 0;
	display: grid;
	gap: 12px
}

.acc-item {
	background: #fff;
	border: 1px solid #e9e5df;
	border-radius: var(--radius);
	overflow: hidden
}

.acc-btn {
	width: 100%;
	text-align: left;
	padding: 18px 18px;
	background: #fff;
	color: var(--navy);
	font-weight: 700;
	font-size: 18px;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer
}

.acc-btn:focus {
	outline: none;
	box-shadow: var(--focus)
}

.acc-icon {
	flex: 0 0 auto;
	margin-left: 8px;
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: var(--primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900
}

.acc-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .28s ease;
	background: linear-gradient(#fff, var(--soft));
	border-top: 1px solid #eee;
	padding: 0 18px
}

.acc-panel.open {
	padding: 16px 18px 18px
}

.tag {
	display: inline-block;
	padding: 6px 10px;
	border: 1px solid var(--primary);
	border-radius: 10px;
	margin: 6px 6px 0 0;
	background: #fff;
	font-size: 13px;
	color: var(--navy)
}

ul.bul {
	margin: 8px 0 0 22px
}

/* Form */
.form-wrap {
	background: #fff;
	border: 1px solid #e9e5df;
	border-radius: var(--radius);
	padding: 22px;
	margin-top: 10px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .04)
}

.grid {
	display: grid;
	gap: 14px
}

.g-2 {
	grid-template-columns: repeat(2, 1fr)
}

.g-3 {
	grid-template-columns: repeat(3, 1fr)
}

@media (max-width:760px) {

	.g-2,
	.g-3 {
		grid-template-columns: 1fr
	}
}

label {
	font-weight: 600;
	font-size: 14px
}

.req {
	color: var(--primary)
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
	width: 100%;
	padding: 12px 12px;
	border: 1px solid #d8d2ca;
	border-radius: 10px;
	background: #fff;
	color: var(--ink);
	font-size: 15px
}

textarea {
	min-height: 110px
}

.checkgroup {
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}

.chip {
	display: flex;
	gap: 8px;
	align-items: center;
	padding: 8px 10px;
	border: 1px solid #d8d2ca;
	border-radius: 999px;
	background: #faf8f6
}

.chip input {
	accent-color: var(--primary)
}

.help {
	font-size: 13px;
	color: var(--muted)
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 8px
}

.btn {
	all: unset;
	cursor: pointer;
	background: var(--primary);
	color: #fff;
	font-weight: 800;
	padding: 13px 18px;
	border-radius: 12px
}

.btn.secondary {
	background: transparent;
	color: var(--navy);
	border: 1px solid #cfc7bf
}

.note {
	font-size: 13px;
	color: var(--muted)
}

.status {
	margin-top: 14px;
	font-weight: 600
}

.status.ok {
	color: var(--ok)
}

.status.err {
	color: var(--err)
}

footer {
	margin: 40px 0 30px;
	text-align: center;
	color: var(--muted);
	font-size: 14px
}

.tiny {
	font-size: 12px
}

.visually-hidden {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden
}

/* Danke-Sektion soll ohne Änderungen an html/body die Höhe füllen */
#danke.cta-section {
	display: grid;
	min-height: 50svh;
}

@supports (height: 100dvh) {
	#danke.cta-section {
		min-height: 50dvh;
	}
}

#danke p, #danke h1 {
	text-align: center;
}

#danke .container {
	min-height: inherit;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 8px;
	padding-block: 24px;
}

@media only screen and (max-width: 767px) {
	#danke .cta-buttons {
		display: contents;
		align-items: center;
	}
}

/* Inaktive Jobs ausblenden */
.job-reinigung, .job-gastronomie, .job-praesenz {
	display: none !important;
}