/* ============================================================
   DAL'ALU — Footer
   ============================================================ */

.dal-footer {
	position: relative;
	padding: 60px 0 24px;
	box-sizing: border-box;
	font-family: var(--dal-font, "Futura Std", sans-serif);
}

.dal-footer * {
	box-sizing: border-box;
}

/* ── Haut : marque à gauche + panneau rouge à droite ──
   Le panneau déborde jusqu'au bord droit du viewport ; le logo
   reste aligné sur la marge du site (10%). */
.dal-footer__top {
	display: grid;
	grid-template-columns: minmax(150px, 0.7fr) 3.3fr;
	align-items: center;
	gap: 48px;
	padding-left: 10%;
}

.dal-footer__logo {
	/* width: 200px; */
	width: 100%;
	height: auto;
	display: block;
}

.dal-footer__tagline {
	margin: 14px 0 0;
	font-size: 13px;
	font-weight: 600;
	color: #000;
}

/* ── Panneau rouge ── */
.dal-footer__panel {
	background: var(--dal-red, #DC0D15);
	border-radius: 300px 0 0 300px;
	padding: 56px 10% 56px 90px;
}

.dal-footer__cols {
	display: grid;
	grid-template-columns: repeat(4, auto);
	gap: 32px 40px;
	justify-content: space-between;
}

.dal-footer__titre {
	margin: 0 0 18px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

.dal-footer__col a {
	display: block;
	color: rgba(255, 255, 255, 0.85);
	font-size: 16px;
	line-height: 1.4;
	text-decoration: none;
	margin-bottom: 10px;
	transition: color 0.15s ease;
}

.dal-footer__col a:hover {
	color: #fff;
}

/* ── Bas : mentions légales + réseaux ── */
.dal-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 32px;
	flex-wrap: wrap;
	width: 80%;
	margin: 28px auto 0;
}

.dal-footer__legal {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.dal-footer__legal a {
	color: #555;
	font-size: 13px;
	text-decoration: none;
}

.dal-footer__legal a:hover {
	color: #000;
}

.dal-footer__social {
	display: flex;
	align-items: center;
	gap: 16px;
}

.dal-footer__social a {
	color: #111;
	display: inline-flex;
	transition: color 0.15s ease;
}

.dal-footer__social a:hover {
	color: var(--dal-red, #DC0D15);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
	.dal-footer__top {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-left: 0;
	}

	.dal-footer__brand {
		padding-left: 5%;
		width: 100%;
	}

	.dal-footer__panel {
		border-radius: 40px 0 0 40px;
		padding: 48px 5% 48px 40px;
	}
}

@media (max-width: 768px) {
	.dal-footer__cols {
		grid-template-columns: 1fr 1fr;
		gap: 28px 24px;
		justify-content: start;
	}
}

@media (max-width: 560px) {
	.dal-footer__panel {
		border-radius: 30px 0 0 30px;
		padding: 36px 6% 36px 28px;
	}

	.dal-footer__cols {
		grid-template-columns: 1fr;
	}

	.dal-footer__bottom {
		justify-content: center;
		gap: 20px;
		text-align: center;
	}
}
