/* ==========================================================================
   GDA Bewerbungsfunnel – Frontend Styles
   Markenfarben als Defaults; alles per Elementor-Style-Tab überschreibbar.
   ========================================================================== */

.gda-frageseite,
.gda-bewerbung {
	--gda-navy: #12283f;
	--gda-navy-dark: #080e2c;
	--gda-yellow: #ffc845;
	--gda-yellow-alt: #f5cb20;
	--gda-cream: #f7f3ea;
	font-family: "Titillium Web", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ------------------------------ FRAGESEITE ------------------------------ */

.gda-frage {
	color: var(--gda-navy);
	margin: 0 0 .5em;
	text-align: center;
	line-height: 1.2;
}

.gda-frage-beschreibung {
	color: #4a5568;
	max-width: 640px;
	margin: 0 auto 2em;
	text-align: center;
	line-height: 1.5;
}

.gda-answers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gda-layout-column .gda-answers {
	grid-template-columns: 1fr;
}

.gda-answer-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding: 28px 24px;
	background-color: #fff;
	border: 2px solid var(--gda-cream);
	border-radius: 16px;
	text-decoration: none;
	color: inherit;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
	box-shadow: 0 2px 10px rgba(18, 40, 63, .05);
	cursor: pointer;
	height: 100%;
}

a.gda-answer-card:hover {
	transform: translateY(-4px);
	border-color: var(--gda-yellow);
	box-shadow: 0 10px 26px rgba(18, 40, 63, .12);
}

.gda-layout-column .gda-answer-card {
	flex-direction: row;
	align-items: center;
	text-align: left;
	gap: 20px;
}

.gda-answer-icon {
	display: inline-flex;
	line-height: 1;
}

.gda-answer-icon i {
	font-size: 48px;
	color: var(--gda-navy);
}

.gda-answer-icon svg {
	width: 48px;
	height: 48px;
	fill: var(--gda-navy);
}

.gda-answer-bild img {
	display: block;
	width: 80px;
	height: auto;
	border-radius: 10px;
}

.gda-answer-titel {
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--gda-navy);
	line-height: 1.25;
}

.gda-answer-text {
	font-size: .95rem;
	color: #5b6572;
	line-height: 1.45;
}

/* ------------------------------ BEWERBUNGSSEITE ------------------------------ */

.gda-bewerbung {
	max-width: 620px;
	margin: 0 auto;
}

.gda-bw-kopf {
	text-align: center;
	margin-bottom: 1.8em;
}

.gda-bw-bild img {
	display: inline-block;
	width: 160px;
	height: auto;
	margin-bottom: 1em;
	border-radius: 14px;
}

.gda-bw-titel {
	color: var(--gda-navy);
	margin: 0 0 .4em;
	line-height: 1.2;
}

.gda-bw-text {
	color: #4a5568;
	line-height: 1.55;
}

.gda-bw-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.gda-bw-form input,
.gda-bw-form textarea {
	width: 100%;
	padding: 14px 16px;
	font-size: 1rem;
	font-family: inherit;
	color: var(--gda-navy);
	background-color: #fff;
	border: 2px solid var(--gda-cream);
	border-radius: 10px;
	transition: border-color .15s ease;
	box-sizing: border-box;
}

.gda-bw-form input:focus,
.gda-bw-form textarea:focus {
	outline: none;
	border-color: var(--gda-yellow);
}

.gda-bw-form textarea {
	resize: vertical;
}

.gda-bw-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .9rem;
	color: #5b6572;
	line-height: 1.4;
	cursor: pointer;
}

.gda-bw-consent input {
	width: auto;
	margin-top: 3px;
	flex-shrink: 0;
}

.gda-bw-consent a {
	color: var(--gda-navy);
	text-decoration: underline;
}

/* Honeypot unsichtbar, aber nicht display:none (Bot-Falle) */
.gda-bw-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.gda-bw-submit {
	margin-top: 6px;
	padding: 16px 28px;
	font-size: 1.05rem;
	font-weight: 700;
	font-family: inherit;
	color: var(--gda-navy);
	background-color: var(--gda-yellow);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color .15s ease, transform .1s ease;
}

.gda-bw-submit:hover {
	background-color: var(--gda-yellow-alt);
}

.gda-bw-submit:active {
	transform: translateY(1px);
}

.gda-bw-submit[disabled] {
	opacity: .6;
	cursor: not-allowed;
}

.gda-bw-response {
	font-size: .95rem;
	line-height: 1.5;
	padding: 0;
}

.gda-bw-response.is-error {
	color: #c0392b;
	padding: 12px 14px;
	background: #fdecea;
	border-radius: 8px;
}

.gda-bw-response.is-success {
	color: #1e7d4f;
	padding: 14px 16px;
	background: #e8f6ee;
	border-radius: 8px;
	font-weight: 600;
}

.gda-bw-goodie {
	margin-top: 14px;
	font-size: .8rem;
	color: #8a94a1;
	line-height: 1.5;
	text-align: center;
}

/* ------------------------------ RESPONSIVE ------------------------------ */

@media (max-width: 767px) {
	.gda-layout-row .gda-answers {
		grid-template-columns: 1fr;
	}
}
