/* =========================================================
   FOOTER
   ========================================================= */
#footer {
	width: 100%;
	background-image: url('../img/footer-bg.png');
	background-size: cover;
	background-position: top center;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	line-height: 1.5;
	padding: 150px 0 30px;
	box-sizing: border-box;
}

.footer-row-inner {
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

.footer-row-1 .footer-row-inner {
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.footer-col {
	flex: 1 1 0;
	min-width: 0;
}

.footer-col-divider {
	border-left: 1px solid #fff;
	padding-left: 40px;
}

.footer-col-logos {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-col-logos img {
	max-height: 120px;
	width: auto;
}

.footer-col-logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.footer-col-logo img {
	max-height: 100px;
	width: auto;
}

/* Widget styling (unabhängig vom Widget-Typ) */
.footer-widget .widget-title,
.footer-col .widget-title,
#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6,
#footer .wp-block-heading {
	color: #fff;
	font-family: 'Anton', sans-serif;
	font-size: 24px;
	font-weight: 400;
	margin: 0 0 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-widget ul,
.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-widget ul li,
.footer-col ul li {
	list-style: none;
	padding: 0;
	margin: 0 0 8px;
}

.footer-widget a,
.footer-col a {
	color: #fff;
	text-decoration: none;
}

.footer-widget a:hover,
.footer-col a:hover {
	text-decoration: underline;
}

.footer-widget img,
.footer-col img {
	max-width: 100%;
	height: auto;
}

#footer-social {
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}

#footer-social img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

/* =========================================================
   DESKTOP >1024
   ========================================================= */
@media (min-width: 1025px) {
	#footer {
		min-height: 300px;
	}
}

/* =========================================================
   TABLET 768-1024
   ========================================================= */
@media (max-width: 1024px) {
	.footer-row-inner {
		gap: 24px;
	}

	.footer-col-divider {
		padding-left: 24px;
	}
}

/* =========================================================
   MOBILE <768: alles einspaltig, Trennlinie aus
   ========================================================= */
@media (max-width: 767px) {
	/* Gleicher Hintergrund wie das mobile Off-Canvas-Menü, statt footer-bg.png */
	#footer {
		background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)), url('../img/mobile-menu.png');
		background-size: cover;
		background-position: center;
	}

	.footer-row-inner {
		flex-direction: column;
		gap: 30px;
	}

	.footer-col-divider {
		border-left: 0;
		padding-left: 0;
	}

	.footer-col-logos {
		flex-direction: column;
		align-items: flex-start;
	}

	#footer-social {
		justify-content: center;
	}
}
