/*
 * ICT Berlin Footer — Design 6a (CTA-Band + zentrierter Skyline-Footer)
 * Alle Regeln mit .site-footer-Präfix: schlägt die Theme-Linkfarbe
 * (.site-footer a { color: #e86240 }) über Spezifität + Ladereihenfolge.
 */

/* ============ CTA-Band ============ */

.site-footer .ict-footer-cta {
	background: #e86240;
	padding: 34px 60px;
}

/* Inhalt an der Container-Breite der Seite ausrichten statt an den
   Fensterkanten (Florian: Texte/Buttons standen zu weit am Rand) */
.site-footer .ict-footer-cta-inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.site-footer .ict-footer-cta-title {
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1.3;
}

.site-footer .ict-footer-cta-subline {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 6px;
	line-height: 1.5;
}

.site-footer .ict-footer-cta-buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.site-footer .ict-footer-cta-btn {
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1.2;
	text-decoration: none;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.site-footer .ict-footer-cta-btn-phone {
	border: 2px solid rgba(255, 255, 255, 0.7);
	color: #ffffff;
	padding: 12px 26px;
}

.site-footer .ict-footer-cta-btn-phone:hover,
.site-footer .ict-footer-cta-btn-phone:focus {
	border-color: #ffffff;
	color: #ffffff;
	text-decoration: none;
}

.site-footer .ict-footer-cta-btn-phone .fa-phone {
	margin-right: 10px;
}

.site-footer .ict-footer-cta-btn-contact {
	background: #23282d;
	color: #ffffff;
	text-transform: uppercase;
	padding: 14px 28px;
}

.site-footer .ict-footer-cta-btn-contact:hover,
.site-footer .ict-footer-cta-btn-contact:focus {
	background: #14171a;
	color: #ffffff;
	text-decoration: none;
}

/* ============ Skyline-Footer ============ */

.site-footer .ict-footer-main {
	position: relative;
	background: #23282d;
	overflow: hidden;
}

.site-footer .ict-footer-bg {
	position: absolute;
	left: 50%;
	bottom: -6px;
	transform: translateX(-50%);
	width: 1280px;
	max-width: none; /* Bootstrap img { max-width: 100% } aushebeln */
	opacity: 0.1;
	pointer-events: none;
}

@media (min-width: 1281px) {
	.site-footer .ict-footer-bg {
		width: 100%;
		max-width: 1600px;
	}
}

.site-footer .ict-footer-content {
	position: relative;
	text-align: center;
	padding: 56px 60px 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
}

.site-footer .ict-footer-logo {
	width: 180px;
	height: auto;
}

.site-footer .ict-footer-nav {
	display: flex;
	gap: 36px;
	flex-wrap: wrap;
	justify-content: center;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.4;
}

.site-footer .ict-footer-nav a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer .ict-footer-nav a:hover,
.site-footer .ict-footer-nav a:focus {
	color: #e86240;
	text-decoration: none;
}

.site-footer .ict-footer-contact {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

.site-footer .ict-footer-contact i {
	color: #e86240;
	margin-right: 9px;
}

.site-footer a.ict-footer-contact-item {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer a.ict-footer-contact-item:hover,
.site-footer a.ict-footer-contact-item:focus {
	color: #e86240;
	text-decoration: none;
}

.site-footer .ict-footer-divider {
	width: 70px;
	height: 3px;
	background: #e86240;
}

.site-footer .ict-footer-legal {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.5;
}

.site-footer .ict-footer-legal-links {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
}

.site-footer .ict-footer-legal-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer .ict-footer-legal-links a:hover,
.site-footer .ict-footer-legal-links a:focus {
	color: #e86240;
	text-decoration: none;
}

.site-footer .ict-footer-copy-short {
	display: none;
}

/* ============ Tablet: engeres CTA-Padding ============ */

@media (max-width: 940px) {
	.site-footer .ict-footer-cta {
		padding: 34px 30px;
	}
}

/* ============ Mobil (Design: 390px-Hochkant) ============ */

@media (max-width: 767px) {
	.site-footer .ict-footer-cta {
		text-align: center;
		padding: 28px 26px;
	}

	.site-footer .ict-footer-cta-inner {
		display: block;
	}

	.site-footer .ict-footer-cta-title {
		font-size: 19px;
	}

	.site-footer .ict-footer-cta-subline {
		font-size: 14px;
		margin: 8px 0 18px;
	}

	.site-footer .ict-footer-cta-buttons {
		flex-direction: column;
		gap: 10px;
	}

	.site-footer .ict-footer-cta-btn {
		display: block;
		text-align: center;
		font-size: 13px;
	}

	.site-footer .ict-footer-cta-btn-phone {
		padding: 12px;
	}

	.site-footer .ict-footer-cta-btn-phone .fa-phone {
		margin-right: 9px;
	}

	.site-footer .ict-footer-cta-btn-contact {
		padding: 13px;
	}

	.site-footer .ict-footer-bg {
		width: 800px;
		bottom: 0;
	}

	.site-footer .ict-footer-content {
		padding: 34px 26px 26px;
		gap: 22px;
	}

	/* Mobile Reihenfolge laut Design: Logo, Nav, Trenner, Kontakt, Legal
	   (Desktop hat den Trenner zwischen Kontakt und Legal) */
	.site-footer .ict-footer-logo {
		width: 160px;
		order: 1;
	}

	.site-footer .ict-footer-nav {
		gap: 26px;
		order: 2;
	}

	.site-footer .ict-footer-divider {
		width: 60px;
		order: 3;
	}

	.site-footer .ict-footer-contact {
		flex-direction: column;
		gap: 12px;
		order: 4;
	}

	.site-footer .ict-footer-legal {
		font-size: 12px;
		margin-top: 6px;
		order: 5;
	}

	.site-footer .ict-footer-legal-links {
		gap: 18px;
	}

	.site-footer .ict-footer-copy-long {
		display: none;
	}

	.site-footer .ict-footer-copy-short {
		display: inline;
	}
}
