/* ================================================
   CRM2SPORT Theme 2026 - Bootstrap 5
   ================================================ */

/*** rte start ***/
/*** rte end ***/


/* ── Base ─────────────────────────────────────── */

:root {
	--red: #DE0000;
	--red-dark: #B80000;
	--dark: #1a1a1a;
	--gray-dark: #333;
	--green: #71BF44;
}

html {
	height: 100%;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	padding-top: 62px;
	overflow-x: hidden;
	color: #212529;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content {
	flex: 1;
	margin-top: -5px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h1 {
	font-size: 2.8rem;
	margin-top: 0;
	margin-bottom: 1.5rem;
}

h2 {
	font-size: 1.8rem;
}

h3 {
	font-size: 1.4rem;
}

a {
	color: var(--red);
	transition: all 0.3s ease;
}

a:hover {
	color: var(--red-dark);
}


/* ── Utilities ────────────────────────────────── */

.mt0 { margin-top: 0 !important; }
.mt10 { margin-top: 10px !important; }
.pt0 { padding-top: 0 !important; }
.mb0 { margin-bottom: 0 !important; }
.pb0 { padding-bottom: 0 !important; }
.bordered { border: 1px solid #ddd; border-radius: 8px; }


/* ── Navbar ───────────────────────────────────── */

.navbar {
	background: var(--dark) !important;
	padding: 0.5rem 0;
	transition: all 0.3s ease;
	margin-bottom: 0 !important;
}

.navbar-brand {
	font-family: 'Oswald', sans-serif;
	font-size: 1.9rem;
	font-weight: 700;
	color: #fff !important;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
}

.navbar-brand span {
	color: var(--red);
}

.navbar-nav .nav-link {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgba(255,255,255,0.7) !important;
	padding: 0.5rem 0.9rem !important;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-item.active .nav-link {
	color: #fff !important;
}

.navbar-nav .nav-item.active .nav-link::after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	background: var(--red);
	margin-top: 2px;
	border-radius: 2px;
}

.navbar .nav-tel .btn {
	font-family: 'Montserrat', sans-serif;
	font-weight: normal;
	font-size: 16px;
	border-color: var(--green);
	color: var(--green) !important;
	border-radius: 50px;
	padding: 0.4rem 1.3rem;
}

.navbar .nav-tel .btn:hover {
	background: var(--green);
	color: #fff !important;
}

.navbar-toggler {
	font-size: 1.5rem;
}

.navbar-toggler:focus {
	box-shadow: none;
}


/* ── Fullscreen Mobile Menu ───────────────────── */

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--red);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
	visibility: hidden;
}

.mobile-menu.active {
	transform: translateX(0);
	visibility: visible;
}

.mobile-menu-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: none;
	border: none;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	padding: 0.5rem;
	line-height: 1;
}

.mobile-menu-nav {
	text-align: center;
}

.mobile-menu-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu-nav ul li {
	margin: 0.6rem 0;
}

.mobile-menu-nav ul li a {
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 2.5rem;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 3px;
	transition: color 0.3s ease;
}

.mobile-menu-nav ul li a:hover {
	color: var(--red);
}

.mobile-menu-tel {
	display: inline-block;
	margin-top: 2.5rem;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	border: 2px solid rgba(255,255,255,0.3);
	padding: 0.8rem 2rem;
	border-radius: 50px;
}

.mobile-menu-tel:hover {
	color: #fff;
	border-color: var(--red);
}

.mobile-menu-tel span {
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	margin-top: 0.3rem;
	opacity: 0.6;
}


/* ── Hero Section ─────────────────────────────── */

.hero-section {
	position: relative;
	background-image: url("../img/hero.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.65);
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding: 4rem 1rem;
}

.hero-content h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 1rem;
	line-height: 1;
}

.hero-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	opacity: 0.9;
	margin-bottom: 2.5rem;
	letter-spacing: 1px;
}

.hero-content .btn-danger {
	background: var(--red);
	border-color: var(--red);
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.8rem 2.5rem;
	font-size: 1rem;
	border-radius: 0;
}

.hero-content .btn-danger:hover {
	background: #fff;
	border-color: #fff;
	color: var(--red);
	transform: translateY(-2px);
}


/* ── About Section ────────────────────────────── */

.section-about {
	padding: 5rem 0;
}

.section-about p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.05rem;
	line-height: 1.9;
}

.site-quote {
	display: block;
	position: relative;
	text-align: center;
	margin: 3rem 0;
	color: var(--dark);
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	font-style: normal;
	line-height: 1.6;
	padding: 2.5rem 3rem;
	border: none;
	background: #fff;
}

.site-quote::before {
	content: '\201C';
	position: absolute;
	top: -10px;
	left: 10px;
	font-family: 'Oswald', sans-serif;
	font-size: 6rem;
	color: var(--red);
	line-height: 1;
	font-weight: 700;
}

.site-quote::after {
	content: '\201D';
	position: absolute;
	bottom: -40px;
	right: 10px;
	font-family: 'Oswald', sans-serif;
	font-size: 6rem;
	color: var(--red);
	line-height: 1;
	font-weight: 700;
}


/* ── Feature Cards ────────────────────────────── */

.row-features {
	margin-top: 4rem;
}

.feature-card {
	text-align: center;
	padding: 2.5rem 1.5rem;
	border: 1px solid #eee;
	border-radius: 0;
	transition: all 0.3s ease;
	height: 100%;
	border-bottom: 3px solid var(--red);
	background: #fff;
}

.feature-card:hover {
	border-bottom-color: var(--red);
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	transform: translateY(-5px);
}

.feature-card i {
	font-size: 2.5rem;
	color: var(--red);
	margin-bottom: 1.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(222, 0, 0, 0.25);
}

.feature-card h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.feature-card p {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.7;
	font-weight: 400;
}


/* ── CTA Section ──────────────────────────────── */

.section-cta {
	background: var(--red);
	color: #fff;
	padding: 4rem 0;
	margin: 0;
}

.cta-text {
	font-family: 'Oswald', sans-serif;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 1.5rem;
}

.section-cta .btn-light {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.8rem 2.5rem;
	border-radius: 0;
	color: var(--red);
}

.section-cta .btn-light:hover {
	background: var(--dark);
	color: #fff;
	border-color: var(--dark);
}


/* ── Chiffres / Stats ─────────────────────────── */

.section-stats {
	background: #000;
	padding: 4rem 0;
}

.stat-number {
	font-family: 'Oswald', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--red);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	color: rgba(255,255,255,0.7);
	text-transform: uppercase;
	letter-spacing: 1px;
}


/* ── Témoignages ─────────────────────────────── */

.section-testimonials {
	padding: 5rem 0;
	background: #fff;
}

.section-testimonials-title {
	font-family: 'Oswald', sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 3rem;
	letter-spacing: 2px;
	color: var(--red);
}

.testimonial-card {
	border: 1px solid #eee;
	border-top: 3px solid var(--red);
	padding: 2rem;
	height: 100%;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	transform: translateY(-3px);
}

.testimonial-stars {
	color: #f5a623;
	font-size: 1rem;
	margin-bottom: 1rem;
	display: flex;
	gap: 0.2rem;
}

.testimonial-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	color: #555;
	line-height: 1.8;
	font-style: italic;
	margin-bottom: 1.5rem;
}

.testimonial-author strong {
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark);
}

.testimonial-author span {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.8rem;
	color: #999;
}


/* ── FAQ ──────────────────────────────────────── */

.section-faq {
	padding: 5rem 0;
	background: #fff;
}

.section-faq-title {
	font-family: 'Oswald', sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 3rem;
	letter-spacing: 2px;
	color: var(--red);
}

.section-faq .accordion-item {
	border: none;
	border-bottom: 1px solid #eee;
	background: transparent;
}

.section-faq .accordion-button {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark);
	background: transparent;
	padding: 1.2rem 0;
	box-shadow: none;
}

.section-faq .accordion-button:not(.collapsed) {
	color: var(--red);
	background: transparent;
}

.section-faq .accordion-button::after {
	filter: none;
}

.section-faq .accordion-body {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.8;
	padding: 0 0 1.2rem;
}


/* ── Actualités / News Section ────────────────── */

.section-news {
	background: #f8f9fa;
	padding: 5rem 0;
	border-top: 1px solid #eee;
}

.section-news-title {
	font-family: 'Oswald', sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 3rem;
	letter-spacing: 2px;
	color: var(--red);
}

.news-card {
	background: #fff;
	padding: 2rem;
	height: 100%;
	border: 1px solid #eee;
	border-bottom: 3px solid var(--red);
	transition: all 0.3s ease;
}

.news-card:hover {
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	transform: translateY(-3px);
}

.news-date {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.8rem;
}

.news-card h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-bottom: 0.8rem;
	color: var(--dark);
}

.news-card p {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.news-tag {
	font-family: 'Montserrat', sans-serif;
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: var(--dark);
	color: #fff;
	padding: 0.25rem 0.8rem;
}

.section-news .btn-danger {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.8rem 2.5rem;
	border-radius: 0;
}


/* ── Section Text (inner pages) ───────────────── */

.section-text {
	padding: 3rem 0;
	min-height: 450px;
}

.section-text h1 {
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 3px solid var(--red);
	display: inline-block;
}


/* ── Fonctionnalités Page ─────────────────────── */

.section-funcs-hero {
	position: relative;
	background-image: url("/themes/2026/assets/img/photo/fonctionnalites-hero.webp");
	background-size: cover;
	background-position: center;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.funcs-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.65);
}

.funcs-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
}

.funcs-hero-content h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 0.5rem;
	border-bottom: none;
}

.funcs-hero-content p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	opacity: 0.9;
}

.section-funcs .nav-pills {
	gap: 0.5rem;
}

.section-funcs .nav-pills .nav-link {
	font-family: 'Montserrat', sans-serif;
	border-radius: 50px;
	padding: 0.6rem 1.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--dark);
	background: #eee;
	font-size: 0.85rem;
}

.section-funcs .nav-pills .nav-link.active {
	background: var(--red);
	color: #fff;
}

.func-item {
	border: 1px solid var(--red);
	padding: 1rem 1.2rem;
	text-align: left;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	justify-content: center;
	gap: 0.5rem;
	background: #fff;
}

.func-item:hover {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
	box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.func-item:hover i,
.func-item:hover .func-text strong,
.func-item:hover .func-text span {
	color: #fff;
}

.func-item i {
	font-size: 1.5rem;
	color: var(--red);
	flex-shrink: 0;
	margin-top: 0.15rem;
	margin-right: 0.5rem;
}

.func-text {
	display: flex;
	flex-direction: column;
}

.func-text strong {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--dark);
}

.func-text span {
	font-size: 0.78rem;
	color: #999;
	font-weight: 400;
	margin-top: 0.25rem;
}

.tab-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	padding: 1.5rem 2rem;
	background: #000;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}

.tab-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.33;
	z-index: 0;
}

.tab-header > * {
	position: relative;
	z-index: 1;
}

#crm .tab-header::before {
	background-image: url('/themes/2026/assets/img/photo/crm.webp');
}

#pos .tab-header::before {
	background-image: url('/themes/2026/assets/img/photo/pos.webp');
}

#bar .tab-header::before {
	background-image: url('/themes/2026/assets/img/photo/bar.webp');
}

#compta .tab-header::before {
	background-image: url('/themes/2026/assets/img/photo/compta.webp');
}

#app .tab-header::before {
	background-image: url('/themes/2026/assets/img/photo/app.webp');
}

.tab-header .tab-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--red);
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 2rem;
	font-weight: 700;
}

.tab-header-text h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.3rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.tab-header-text p {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	color: rgba(255,255,255,0.7);
	margin: 0;
}



/* ── More Questions ───────────────────────────── */

.more-questions {
	text-align: center;
	margin: 3rem 0;
	padding: 3rem 2rem;
	background: var(--red);
	border-radius: 8px;
	color: #fff;
}

.more-questions-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 1.2rem;
}

.more-questions h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.8rem;
}

.more-questions p {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	color: rgba(255,255,255,0.7);
	margin-bottom: 1.5rem;
}


/* ── Pricing ──────────────────────────────────── */

.section-tarifs-hero {
	position: relative;
	background-image: url("/themes/2026/assets/img/photo/tarifs-hero.webp");
	background-size: cover;
	background-position: center;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tarifs-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.65);
}

.tarifs-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
}

.tarifs-hero-content h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 0.5rem;
	border-bottom: none;
}

.tarifs-hero-content p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	opacity: 0.9;
}

.pricing-card {
	background: #fff;
	padding: 2rem 0;
}

.pricing-intro {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.05rem;
	margin-bottom: 2rem;
}

.pricing-grid {
	margin-bottom: 3rem;
}

.pricing-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-list li {
	font-family: 'Montserrat', sans-serif;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 0.5rem;
	border-bottom: 2px solid var(--red);
}

.pricing-list li i {
	color: var(--red);
	font-size: 1.8rem;
	flex-shrink: 0;
	margin-top: 0.2rem;
}

.pricing-list li > div {
	display: flex !important;
	flex-direction: column !important;
	min-width: 0;
}

.pricing-list li > div > strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--dark);
}

.pricing-list li > div > span {
	display: block;
	font-size: 0.8rem;
	color: #999;
	margin-top: 0.25rem;
}

.pricing-list li {
	transition: all 0.3s ease;
}

.pricing-list li:hover {
	background: var(--red);
	border-bottom-color: var(--red);
}

.pricing-list li:hover i,
.pricing-list li:hover strong,
.pricing-list li:hover span {
	color: #fff;
}

.price-block {
	padding: 3rem;
	border: 2px solid var(--red);
}

.price-tag {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	padding: 2rem 3rem;
	background: none;
	border: none;
	display: inline-block;
	margin-bottom: 1.5rem;
}

.price-tag strong {
	font-family: 'Oswald', sans-serif;
	font-size: 4rem;
	font-weight: 700;
	color: var(--red);
	letter-spacing: 1px;
}

.price-badges {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.price-badge {
	font-family: 'Montserrat', sans-serif;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: var(--dark);
	color: #fff;
	padding: 0.5rem 1.2rem;
	border-radius: 50px;
}

.price-badge i {
	font-size: 1rem;
}

.questions-cta {
	text-align: center;
	margin-top: 3rem;
	padding: 3rem 2rem;
	background: var(--red);
	color: #fff;
}

.questions-cta-icon {
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 1rem;
}

.questions-cta h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.8rem;
}

.questions-cta p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	opacity: 0.7;
	margin-bottom: 1.5rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.questions-cta .btn-danger {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.8rem 2.5rem;
	border-radius: 0;
	font-size: 1rem;
}



/* ── Page Actualités ─────────────────────────── */

.section-actu-hero {
	position: relative;
	background: var(--red);
	min-height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
}

.section-actu-hero h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 0.5rem;
	border-bottom: none;
}

.section-actu-hero p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	opacity: 0.9;
}

.section-actu-list {
	padding: 4rem 0;
}

.actu-card {
	border: 1px solid #eee;
	border-left: 4px solid var(--red);
	padding: 2rem;
	height: 100%;
	transition: all 0.3s ease;
}

.actu-card:hover {
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	transform: translateY(-3px);
}

.actu-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.actu-date {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.actu-tag {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0.3rem 0.8rem;
	border-radius: 50px;
}

.tag-produit {
	background: rgba(222, 0, 0, 0.1);
	color: var(--red);
}

.tag-event {
	background: rgba(113, 191, 68, 0.1);
	color: var(--green);
}

.tag-maj {
	background: rgba(0, 0, 0, 0.08);
	color: var(--dark);
}

.actu-card h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.8rem;
	color: var(--dark);
}

.actu-card p {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.88rem;
	color: #666;
	line-height: 1.7;
	margin-bottom: 0;
}


/* ── Recrutement ──────────────────────────────── */

.section-recrutement-hero {
	position: relative;
	background-image: url("/themes/2026/assets/img/photo/recrutement-hero.webp");
	background-size: cover;
	background-position: center;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.recrutement-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.65);
}

.recrutement-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding: 3rem 1rem;
}

.recrutement-hero-content h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 0.5rem;
	border-bottom: none;
}

.recrutement-hero-content p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	opacity: 0.9;
}

.section-recrutement {
	min-height: 250px;
}

.no-record-block {
	text-align: center;
	margin: 3rem auto;
	padding: 4rem 2rem;
	max-width: 600px;
}

.no-record-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
}

.no-record-block h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 1rem;
}

.no-record-block p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.05rem;
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.7;
}

.no-record-block .btn-danger {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.7rem 2rem;
	border-radius: 0;
}


/* ── Contact Page ─────────────────────────────── */

.section-contact-hero {
	position: relative;
	background-image: url("/themes/2026/assets/img/photo/contact-hero.webp");
	background-size: cover;
	background-position: center;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
}

.contact-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.65);
}

.contact-hero-content {
	position: relative;
	z-index: 2;
	padding: 3rem 1rem;
}

.section-contact-hero h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 0.5rem;
	border-bottom: none;
}

.section-contact-hero p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 0;
}

.section-contact-body {
	padding: 4rem 0;
}

.contact-info-card {
	padding: 1.5rem;
	margin-bottom: 1rem;
	border: 1px solid #eee;
	text-align: center;
	transition: all 0.3s ease;
	background: #fff;
}

.contact-info-card:hover {
	border-color: var(--red);
}

.contact-info-icon {
	width: 50px;
	height: 50px;
	background: var(--red);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.2rem;
}

.contact-info-card h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
}

.contact-info-card a {
	font-family: 'Montserrat', sans-serif;
	display: block;
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 0.3rem;
}

.contact-info-card small {
	font-family: 'Montserrat', sans-serif;
	color: #999;
	font-size: 0.8rem;
}

.contact-form-wrapper {
	padding: 2rem;
	background: #fff;
	border: 1px solid #eee;
}

.contact-form-wrapper h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 1.5rem;
}

/* Plugin form overrides (fo-bs3-contact) */
.contact-form-wrapper .well {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
}

.contact-form-wrapper .form-group {
	margin-bottom: 1.2rem;
}

.contact-form-wrapper .form-control {
	font-family: 'Montserrat', sans-serif;
	border: none;
	border-bottom: 2px solid #ddd;
	border-radius: 0;
	background: transparent;
	padding: 0.8rem 0;
	font-size: 0.95rem;
}

.contact-form-wrapper .form-control:focus {
	box-shadow: none;
	border-color: var(--red);
}

.contact-form-wrapper .input-group {
	display: block;
}

.contact-form-wrapper .input-group-addon,
.contact-form-wrapper .input-group-text {
	display: none;
}

.contact-form-wrapper .input-group .form-control {
	width: 100%;
	float: none;
}

.contact-form-wrapper .btn-primary,
.contact-form-wrapper .btn-default {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.8rem 2.5rem;
	border-radius: 0;
	font-size: 0.9rem;
}

.contact-form-wrapper .btn-primary:hover,
.contact-form-wrapper .btn-default:hover {
	background: var(--red-dark);
	border-color: var(--red-dark);
}

.form-error { color: var(--red); font-size: 13px; }
.form-error:last-child { padding-bottom: 20px !important; }

.form-valid { text-align: center; padding: 50px 0; min-height: 300px; }

.form-bottom { padding: 20px 0; }


/* ── Pages Sport ──────────────────────────────── */

.section-sport-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-sport-padel-hero {
	background-image: url("/themes/2026/assets/img/photo/padel-hero.webp");
}

.section-sport-foot5-hero {
	background-image: url("/themes/2026/assets/img/photo/foot5.webp");
}

.section-sport-badminton-hero {
	background-image: url("/themes/2026/assets/img/photo/badminton.webp");
}

.section-sport-squash-hero {
	background-image: url("/themes/2026/assets/img/photo/squash.webp");
}

.section-sport-volley-hero {
	background-image: url("/themes/2026/assets/img/photo/volley.webp");
}

.section-sport-rugby-hero {
	background-image: url("/themes/2026/assets/img/photo/rugby.webp");
}

.section-sport-basket-hero {
	background-image: url("/themes/2026/assets/img/photo/basket.webp");
}

.section-sport-golf-hero {
	background-image: url("/themes/2026/assets/img/photo/golf.webp");
}

.section-sport-tennis-hero {
	background-image: url("/themes/2026/assets/img/photo/tennis.webp");
}

.section-sport-pickleball-hero {
	background-image: url("/themes/2026/assets/img/photo/pickleball.webp");
}

.section-sport-escalade-hero {
	background-image: url("/themes/2026/assets/img/photo/escalade.webp");
}

.section-sport-pingpong-hero {
	background-image: url("/themes/2026/assets/img/photo/pingpong.webp");
}

.sport-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.65);
}

.sport-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding: 3rem 1rem;
}

.sport-hero-content h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 0.5rem;
	border-bottom: none;
}

.sport-hero-content p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	opacity: 0.9;
}

.section-sport h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 1rem;
}

.section-sport p {
	font-size: 1rem;
	line-height: 1.8;
	color: #555;
}

.section-sport-features {
	background: #f8f9fa;
	padding: 4rem 0;
}

.section-sport-features h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 2.2rem;
	font-weight: 600;
	color: var(--dark);
}

.section-sport-features h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
}

.section-sport-others {
	padding: 3rem 0;
}

.section-sport-others h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--dark);
	text-align: center;
	margin-bottom: 2rem;
}

.sport-link {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1rem 1.2rem;
	border: 1px solid #eee;
	border-bottom: 3px solid var(--red);
	text-decoration: none;
	color: var(--dark);
	font-family: 'Montserrat', sans-serif;
	transition: all 0.3s ease;
}

.sport-link:hover {
	background: var(--red);
	color: #fff;
	border-color: var(--red);
}

.sport-link i {
	font-size: 1.6rem;
	color: var(--red);
	transition: color 0.3s ease;
}

.sport-link:hover i {
	color: #fff;
}

.sport-icon {
	display: inline-block;
	width: 32px;
	height: 32px;
	background-color: var(--red);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	flex-shrink: 0;
	transition: background-color 0.3s ease;
}

.sport-link:hover .sport-icon {
	background-color: #fff;
}

.icon-padel { -webkit-mask-image: url('../img/sports/padel.svg'); mask-image: url('../img/sports/padel.svg'); }
.icon-foot5 { -webkit-mask-image: url('../img/sports/foot5.svg'); mask-image: url('../img/sports/foot5.svg'); }
.icon-badminton { -webkit-mask-image: url('../img/sports/badminton.svg'); mask-image: url('../img/sports/badminton.svg'); }
.icon-squash { -webkit-mask-image: url('../img/sports/squash.svg'); mask-image: url('../img/sports/squash.svg'); }
.icon-volley { -webkit-mask-image: url('../img/sports/volley.svg'); mask-image: url('../img/sports/volley.svg'); }
.icon-rugby { -webkit-mask-image: url('../img/sports/rugby.svg'); mask-image: url('../img/sports/rugby.svg'); }
.icon-basket { -webkit-mask-image: url('../img/sports/basket.svg'); mask-image: url('../img/sports/basket.svg'); }
.icon-golf { -webkit-mask-image: url('../img/sports/golf.svg'); mask-image: url('../img/sports/golf.svg'); }
.icon-tennis { -webkit-mask-image: url('../img/sports/tennis.svg'); mask-image: url('../img/sports/tennis.svg'); }
.icon-pickleball { -webkit-mask-image: url('../img/sports/pickleball.svg'); mask-image: url('../img/sports/pickleball.svg'); }
.icon-escalade { -webkit-mask-image: url('../img/sports/escalade.svg'); mask-image: url('../img/sports/escalade.svg'); }
.icon-pingpong { -webkit-mask-image: url('../img/sports/pingpong.svg'); mask-image: url('../img/sports/pingpong.svg'); }

.sport-link-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.sport-link-text strong {
	font-size: 0.95rem;
	font-weight: 700;
}

.sport-link-text small {
	font-size: 0.75rem;
	color: #888;
	font-weight: 400;
}

.sport-link:hover .sport-link-text small {
	color: rgba(255,255,255,0.7);
}

.section-sport-cta {
	background: var(--red);
	color: #fff;
	padding: 4rem 0;
}

.sport-cta-icon {
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 1rem;
}

.section-sport-cta h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.8rem;
}

.section-sport-cta p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	opacity: 0.8;
	margin-bottom: 1.5rem;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}


/* ── Scroll Up ────────────────────────────────── */

.scroll-up {
	z-index: 5555;
	bottom: 20px;
	right: 25px;
	position: fixed;
	display: none;
}

.scroll-up a {
	color: var(--red);
	font-size: 3rem;
	transition: all 0.3s ease;
	text-decoration: none;
}

.scroll-up a:hover {
	color: var(--red-dark);
	transform: scale(1.1);
}


/* ── Footer ───────────────────────────────────── */

footer {
	background: #000;
	color: rgba(255,255,255,0.6);
	padding: 3.5rem 0 1rem;
	margin-top: 0;
}

.footer-brand {
	font-family: 'Oswald', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: 2px;
}

.footer-brand span {
	color: var(--red);
	margin-bottom: 0.8rem;
}

.footer-desc {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50%;
	color: rgba(255,255,255,0.6);
	margin-right: 0.5rem;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	border-color: var(--red);
	color: var(--red);
}

.footer-title {
	font-family: 'Oswald', sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links li a {
	font-family: 'Montserrat', sans-serif;
	color: rgba(255,255,255,0.6);
	font-size: 1rem;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 400;
}

.footer-links li a:hover {
	color: #fff;
}

.footer-contact-info li {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	margin-bottom: 0.8rem;
}

.footer-contact-info li i {
	color: var(--red);
	margin-right: 0.5rem;
}

.footer-contact-info li small {
	display: block;
	font-size: 0.85rem;
	opacity: 0.5;
	margin-left: 1.5rem;
}

.footer-hr {
	border-color: rgba(255,255,255,0.1);
	margin: 2rem 0 1rem;
}

.footer-bottom {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	color: rgba(255,255,255,0.4);
}

footer .footer-bottom a {
	color: var(--green);
	font-weight: 700;
	text-decoration: none;
}

footer .footer-bottom a:hover {
	color: #fff;
}


/* ── Buttons Override ─────────────────────────── */

.btn-danger {
	background: var(--red);
	border-color: var(--red);
	font-weight: 700;
	border-radius: 0;
}

.btn-danger:hover {
	background: var(--red-dark);
	border-color: var(--red-dark);
}


/* ── Generic form inputs ──────────────────────── */

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	font-family: 'Montserrat', sans-serif;
}
