/* IFBA - surcharges du theme Quantum */
:root,
[data-bs-theme=light],
[data-bs-theme=dark] {
	--bs-theme: #ff3d7f;
	--bs-theme-rgb: 255, 61, 127;
}

/* ---------- Hero ---------- */
.ifba-hero {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center 30%;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1.5rem;
}
.ifba-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 10, 16, .92) 0%, rgba(10, 10, 16, .72) 45%, rgba(255, 61, 127, .28) 100%);
}
.ifba-hero > .ifba-hero-content {
	position: relative;
	z-index: 1;
	padding: 3rem 2rem;
}
.ifba-hero h1 {
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.ifba-slogan {
	color: var(--bs-theme);
	font-style: italic;
	font-weight: 600;
}

/* ---------- Page header ---------- */
.ifba-page-title {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	border-left: 4px solid var(--bs-theme);
	padding-left: 1rem;
}

/* ---------- Galeries ---------- */
.ifba-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ifba-gallery li {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 4px;
	background: rgba(255, 255, 255, .05);
}
.ifba-gallery li a {
	display: block;
	width: 100%;
	height: 100%;
}
.ifba-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease, filter .3s ease;
}
.ifba-gallery li:hover img {
	transform: scale(1.06);
	filter: brightness(1.1);
}

/* ---------- Equipe ---------- */
.ifba-team-photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: top center;
	border-radius: 8px 8px 0 0;
}

/* ---------- Divers ---------- */
.ifba-stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--bs-theme);
}
.ifba-cta {
	background: linear-gradient(135deg, rgba(255, 61, 127, .18), rgba(255, 61, 127, .04));
	border: 1px solid rgba(255, 61, 127, .35);
	border-radius: 8px;
}
.ifba-feature-img {
	height: 200px;
	width: 100%;
	object-fit: cover;
	border-radius: 8px 8px 0 0;
}
.ifba-footer {
	border-top: 1px solid rgba(255, 255, 255, .1);
	margin-top: 3rem;
	padding: 2rem 0 1rem;
}
.ifba-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .2);
	color: inherit;
	margin-right: .5rem;
	transition: all .2s;
}
.ifba-social a:hover {
	border-color: var(--bs-theme);
	color: var(--bs-theme);
}
.brand-logo img {
	height: 36px;
	width: 36px;
	border-radius: 50%;
	object-fit: cover;
}
