/*
|--------------------------------------------------------------------------
| ALC Le Club
| Version : 0.3.0
|--------------------------------------------------------------------------
*/

/* ======================================================
   VARIABLES
====================================================== */

:root{

	--alc-orange:#f85903;
	--alc-orange-dark:#d94d00;
	--alc-black:#1f1f1f;
	--alc-text:#444;
	--alc-light:#f7f7f7;
	--alc-border:#e7e7e7;
	--alc-white:#ffffff;

	--alc-radius:14px;
	--alc-radius-sm:8px;

	--alc-shadow-sm:0 4px 12px rgba(0,0,0,.06);
	--alc-shadow-md:0 10px 24px rgba(0,0,0,.10);
	--alc-shadow-lg:0 20px 40px rgba(0,0,0,.12);

	--alc-transition:.25s ease;

	--alc-max-width:1500px;

}

/* ======================================================
   WRAPPER
====================================================== */

.alc-club{

    max-width:var(--alc-max-width);

    margin:50px auto;

    padding:0 24px;

    font-family:inherit;

    color:var(--alc-text);

}

/* ======================================================
   HEADER
====================================================== */

.alc-club-header{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#ffffff 0%,#fbfbfb 100%);

    border:1px solid var(--alc-border);

    border-radius:22px;

    padding:42px 48px;

    margin-bottom:40px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.alc-club-header::before{

    content:"";

    position:absolute;

    left:0;
    top:0;
    bottom:0;

    width:8px;

    background:var(--alc-orange);

}

.alc-club-header h1{

    margin:0;

    font-size:2.6rem;

    font-weight:900;

    line-height:1.15;

    color:var(--alc-black);

    letter-spacing:-1px;

}

.alc-club-header p{

    margin-top:18px;

    max-width:900px;

    font-size:1.12rem;

    line-height:1.9;

    color:#666;

}

/* ======================================================
   NAVIGATION
====================================================== */

.alc-club-nav{

	display:flex;

	flex-wrap:wrap;

	gap:12px;

	margin-bottom:30px;

}

.alc-club-nav a{

	display:flex;

	align-items:center;

	justify-content:center;

	padding:14px 22px;

	background:#fff;

	color:var(--alc-black);

	text-decoration:none;

	font-weight:700;

	border-radius:10px;

	border:1px solid var(--alc-border);

	box-shadow:var(--alc-shadow-sm);

	transition:var(--alc-transition);

}

.alc-club-nav a:hover{

	transform:translateY(-2px);

	box-shadow:var(--alc-shadow-md);

	border-color:var(--alc-orange);

}

.alc-club-nav a.active{

	background:var(--alc-orange);

	color:#fff;

	border-color:var(--alc-orange);

}

/* ======================================================
   CONTENU
====================================================== */

.alc-club-content{

	background:#fcfcfc;

	border:1px solid var(--alc-border);

	border-radius:var(--alc-radius);

	padding:40px;

	box-shadow:var(--alc-shadow-sm);

	min-height:500px;

}

/* ======================================================
   SECTION
====================================================== */

.alc-club-section{

	display:flex;

	flex-direction:column;

	gap:40px;

}

.alc-club-section-header{

	padding-bottom:28px;

	margin-bottom:8px;

	border-bottom:2px solid var(--alc-border);

}

.alc-club-section-title{

	position:relative;

	display:inline-block;

	margin:0 0 22px;

	padding-bottom:16px;

	font-size:2rem;

	font-weight:800;

	line-height:1.2;

	letter-spacing:-.6px;

	color:var(--alc-black);

}

.alc-club-section-title::after{

	content:"";

	position:absolute;

	left:0;
	bottom:0;

	width:90px;

	height:5px;

	border-radius:999px;

	background:var(--alc-orange);

}

.alc-club-section-description{

	max-width:900px;

	margin:0;

	font-size:1.08rem;

	line-height:1.95;

	color:#666;

}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width:992px){

	.alc-club{

		padding:0 16px;

	}

	.alc-club-content{

		padding:30px;

	}

}

@media (max-width:768px){

	.alc-club{

		margin:25px auto;

	}

	.alc-club-header{

		padding:24px;

	}

	.alc-club-header h1{

		font-size:1.7rem;

	}

	.alc-club-nav{

		display:grid;

		grid-template-columns:repeat(2,minmax(0,1fr));

	}

	.alc-club-nav a{

		width:100%;

	}

	.alc-club-content{

		padding:24px;

	}

	.alc-club-section-title{

		font-size:1.6rem;

	}

}

@media (max-width:480px){

	.alc-club-nav{

		grid-template-columns:1fr;

	}

	.alc-club-content{

		padding:20px;

	}

}

/* ======================================================
   GRILLE
====================================================== */

.alc-club-grid{

	display:grid;

	grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

	gap:24px;

}

/* ======================================================
   CARTES
====================================================== */

.alc-club-card{

	position:relative;

	display:flex;
	flex-direction:column;

	min-height:320px;

	background:#fff;

	border:1px solid #ececec;

	border-radius:20px;

	overflow:hidden;

	box-shadow:
		0 12px 30px rgba(15,23,42,.06),
		0 2px 8px rgba(15,23,42,.04);

	transition:
		transform .28s ease,
		box-shadow .28s ease,
		border-color .28s ease;

}

.alc-club-card::before{

	content:"";

	position:absolute;

	left:0;
	right:0;
	top:0;

	height:5px;

	background:var(--alc-orange);

}

.alc-club-card:hover{

	transform:translateY(-6px);

	border-color:rgba(248,89,3,.30);

	box-shadow:
		0 22px 50px rgba(15,23,42,.12),
		0 8px 20px rgba(15,23,42,.08);

}

.alc-club-card-header{

	padding:24px 30px;

	background:linear-gradient(
		180deg,
		#ffffff 0%,
		#fafafa 100%
	);

	border-bottom:1px solid var(--alc-border);

}

.alc-club-card-title{

	margin:0;

	font-size:1.45rem;

	font-weight:800;

	line-height:1.3;

	letter-spacing:-.4px;

	color:var(--alc-black);

}

.alc-club-card-content{

	display:flex;

	flex-direction:column;

	flex:1;

	padding:32px;

	line-height:1.9;

	color:#555;

}

.alc-club-card-content p{

	margin:0 0 20px;

}

.alc-club-card-content p:last-child{

	margin-top:auto;

	margin-bottom:0;

	padding-top:24px;

}

.alc-club-card-content ul{

	margin:0;

	padding-left:22px;

	line-height:2;

}

.alc-club-card-content li{

	margin-bottom:8px;

}

.alc-club-card-content li::marker{

	color:var(--alc-orange);

}

.alc-club-card .alc-club-button{

	width:max-content;

}

/* ======================================================
   CARTES KERLAURENT - AJUSTEMENTS
====================================================== */

.alc-club-card > h3{

	margin-top:0;

	margin-bottom:18px;

	font-size:1.45rem;

	font-weight:800;

	line-height:1.3;

	color:var(--alc-black);

}


.alc-club-card > p{

	line-height:1.8;

	color:#555;

}


.alc-club-card > p:last-child{

	margin-top:auto;

	padding-top:20px;

	margin-bottom:0;

}


/* bouton dans les cartes simples */

.alc-club-card > p > .alc-button{

	display:inline-flex;

	align-items:center;

	gap:8px;

}


/* petit effet premium */

.alc-club-card:hover > h3{

	color:var(--alc-orange);

	transition:color .25s ease;

}

/* ======================================================
   BLOCS D'INFORMATIONS
====================================================== */

.alc-club-info{

	position:relative;

	display:flex;

	flex-direction:column;

	gap:18px;

	margin:55px 0;

	padding:36px 42px;

	background:linear-gradient(
		135deg,
		#fff9f5 0%,
		#ffffff 100%
	);

	border:1px solid rgba(248,89,3,.12);

	border-left:6px solid var(--alc-orange);

	border-radius:20px;

	box-shadow:
		0 14px 34px rgba(15,23,42,.06);

	overflow:hidden;

}

.alc-club-info::before{

	content:"";

	position:absolute;

	right:-40px;

	top:-40px;

	width:160px;

	height:160px;

	border-radius:50%;

	background:rgba(248,89,3,.05);

}

.alc-club-info-label{

	position:relative;

	width:auto;

	margin:0;

	font-size:1.45rem;

	font-weight:800;

	color:var(--alc-black);

	z-index:2;

}

.alc-club-info-value{

	position:relative;

	line-height:2;

	font-size:1.06rem;

	color:#555;

	z-index:2;

}

/* ======================================================
   BADGES
====================================================== */

.alc-club-badge{

	display:inline-flex;

	align-items:center;

	padding:6px 12px;

	border-radius:999px;

	background:rgba(248,89,3,.08);

	color:var(--alc-orange);

	font-size:.85rem;

	font-weight:700;

	margin-right:8px;

	margin-bottom:8px;

}

/* ======================================================
   CHIFFRES CLÉS
====================================================== */

.alc-club-stats{

	display:grid;

	grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

	gap:24px;

	margin:40px 0 55px;

}


.alc-club-stat{

	position:relative;

	display:flex;

	flex-direction:column;

	justify-content:center;

	align-items:center;

	min-height:170px;

	padding:30px 24px;

	text-align:center;

	background:#fff;

	border:1px solid var(--alc-border);

	border-radius:20px;

	overflow:hidden;

	box-shadow:
		0 12px 30px rgba(15,23,42,.06),
		0 2px 8px rgba(15,23,42,.04);

	transition:
		transform .28s ease,
		box-shadow .28s ease,
		border-color .28s ease;

}


/* bandeau supérieur */

.alc-club-stat::before{

	content:"";

	position:absolute;

	top:0;

	left:0;

	right:0;

	height:5px;

	background:var(--alc-orange);

}


/* cercle décoratif */

.alc-club-stat::after{

	content:"";

	position:absolute;

	right:-35px;

	bottom:-35px;

	width:100px;

	height:100px;

	border-radius:50%;

	background:rgba(248,89,3,.06);

}


/* hover */

.alc-club-stat:hover{

	transform:translateY(-6px);

	border-color:rgba(248,89,3,.30);

	box-shadow:
		0 22px 50px rgba(15,23,42,.12),
		0 8px 20px rgba(15,23,42,.08);

}


/* nombre */

.alc-club-stat-number{

	position:relative;

	z-index:1;

	display:block;

	margin-bottom:12px;

	font-size:3.2rem;

	font-weight:900;

	line-height:1;

	letter-spacing:-1.5px;

	color:var(--alc-orange);

}


/* libellé */

.alc-club-stat-label{

	position:relative;

	z-index:1;

	font-size:.90rem;

	font-weight:800;

	text-transform:uppercase;

	letter-spacing:.08em;

	color:#666;

}

/* ======================================================
   TIMELINE
====================================================== */

.alc-history{

	position:relative;

	margin:60px 0;

	padding-left:70px;

}

.alc-history::before{

	content:"";

	position:absolute;

	left:24px;

	top:10px;

	bottom:10px;

	width:4px;

	border-radius:999px;

	background:linear-gradient(
		180deg,
		var(--alc-orange) 0%,
		#ff9a5a 100%
	);

}

.alc-history-item{

	position:relative;

	margin-bottom:42px;

	padding-left:26px;

	transition:transform .25s ease;

}

.alc-history-item:last-child{

	margin-bottom:0;

}

.alc-history-item:hover{

	transform:translateX(6px);

}

.alc-history-item::before{

	content:"";

	position:absolute;

	left:-58px;

	top:18px;

	width:18px;

	height:18px;

	border-radius:50%;

	background:var(--alc-orange);

	border:4px solid #fff;

	box-shadow:
		0 0 0 4px rgba(248,89,3,.12),
		0 8px 20px rgba(248,89,3,.25);

	transition:all .25s ease;

	z-index:5;

}

.alc-history-item:hover::before{

	transform:scale(1.15);

	box-shadow:
		0 0 0 6px rgba(248,89,3,.18),
		0 12px 28px rgba(248,89,3,.30);

}

.alc-history-content{

	background:#fff;

	padding:28px 32px;

	border-radius:20px;

	border:1px solid #ececec;

	box-shadow:
		0 12px 30px rgba(15,23,42,.06),
		0 2px 8px rgba(15,23,42,.04);

	transition:
		transform .25s ease,
		box-shadow .25s ease,
		border-color .25s ease;

}

.alc-history-item:hover .alc-history-content{

	border-color:rgba(248,89,3,.22);

	box-shadow:
		0 22px 48px rgba(15,23,42,.10),
		0 8px 20px rgba(15,23,42,.08);

}

.alc-history-year{

	display:inline-block;

	margin-bottom:18px;

	padding:8px 18px;

	border-radius:999px;

	background:#fff;

	border:2px solid var(--alc-orange);

	color:var(--alc-orange);

	font-size:.92rem;

	font-weight:800;

	letter-spacing:.08em;

	text-transform:uppercase;

	transition:
		background .25s ease,
		color .25s ease;

}

.alc-history-item:hover .alc-history-year{

	background:var(--alc-orange);

	color:#fff;

}

.alc-history-content h3{

	margin:0 0 14px;

	font-size:1.45rem;

	font-weight:800;

	line-height:1.3;

	color:var(--alc-black);

}

.alc-history-content p{

	margin:0;

	line-height:1.9;

	color:#555;

}

@media (max-width:768px){

	.alc-history{

		padding-left:46px;

	}

	.alc-history::before{

		left:14px;

	}

	.alc-history-item{

		padding-left:18px;

		margin-bottom:32px;

	}

	.alc-history-item::before{

		left:-36px;

		width:16px;

		height:16px;

	}

	.alc-history-content{

		padding:24px;

	}

}

/* ======================================================
   GALERIE
====================================================== */

.alc-club-gallery{

	display:grid;

	grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

	gap:18px;

}

.alc-club-gallery img{

	width:100%;

	display:block;

	border-radius:12px;

	box-shadow:var(--alc-shadow-sm);

	transition:var(--alc-transition);

}

.alc-club-gallery img:hover{

	transform:scale(1.03);

	box-shadow:var(--alc-shadow-md);

}

/* ======================================================
   BOUTONS
====================================================== */

.alc-button,
.alc-club-button{

	position:relative;

	display:inline-flex;

	align-items:center;

	justify-content:center;

	gap:10px;

	padding:15px 28px;

	border:none;

	border-radius:999px;

	background:linear-gradient(
		180deg,
		#ff6b12 0%,
		var(--alc-orange) 100%
	);

	color:#fff;

	font-weight:700;

	text-decoration:none;

	letter-spacing:.02em;

	box-shadow:
		0 10px 24px rgba(248,89,3,.28);

	overflow:hidden;

	transition:
		transform .25s ease,
		box-shadow .25s ease,
		background .25s ease;

}


.alc-button::before,
.alc-club-button::before{

	content:"";

	position:absolute;

	inset:0;

	background:
		linear-gradient(
			120deg,
			transparent 20%,
			rgba(255,255,255,.18) 50%,
			transparent 80%
		);

	transform:translateX(-120%);

	transition:transform .6s ease;

}


.alc-button:hover,
.alc-club-button:hover{

	transform:translateY(-3px);

	box-shadow:

		0 16px 34px rgba(248,89,3,.35);

	color:#fff;

}


.alc-button:hover::before,
.alc-club-button:hover::before{

	transform:translateX(120%);

}


.alc-button:active,
.alc-club-button:active{

	transform:translateY(-1px);

}

/* ======================================================
   LISTES
====================================================== */

.alc-club-list{

	margin:0;

	padding-left:20px;

	line-height:2;

}

.alc-club-list li::marker{

	color:var(--alc-orange);

}

/* ======================================================
   TABLEAUX
====================================================== */

.alc-club-table{

	width:100%;

	border-collapse:collapse;

	margin-top:15px;

}

.alc-club-table th{

	background:var(--alc-orange);

	color:#fff;

	padding:14px;

	text-align:left;

}

.alc-club-table td{

	padding:14px;

	border-bottom:1px solid var(--alc-border);

}

.alc-club-table tr:nth-child(even){

	background:#fafafa;

}

/* ======================================================
   CITATION
====================================================== */

.alc-club-quote{

	position:relative;

	margin:20px 0 50px;

	padding:34px 40px;

	background:#fff8f3;

	border-left:6px solid var(--alc-orange);

	border-radius:18px;

	box-shadow:var(--alc-shadow-sm);

	overflow:hidden;

}

.alc-club-quote::before{

	content:"“";

	position:absolute;

	top:-18px;

	right:24px;

	font-size:7rem;

	font-weight:800;

	line-height:1;

	color:rgba(248,89,3,.08);

	pointer-events:none;

}

.alc-club-quote p{

	margin:0;

	font-size:1.35rem;

	font-weight:700;

	line-height:1.7;

	color:var(--alc-black);

	font-style:italic;

}

.alc-club-quote footer{

	margin-top:18px;

	font-size:.95rem;

	font-weight:700;

	color:var(--alc-orange);

}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:768px){

	.alc-club-info{

		flex-direction:column;

		gap:8px;

	}

	.alc-club-info-label{

		width:auto;

	}

	.alc-club-grid{

		grid-template-columns:1fr;

	}

	.alc-club-gallery{

		grid-template-columns:1fr 1fr;

	}

	.alc-club-stats{

		grid-template-columns:1fr 1fr;

	}

}

@media(max-width:480px){

	.alc-club-gallery{

		grid-template-columns:1fr;

	}

	.alc-club-stats{

		grid-template-columns:1fr;

	}

}

/* ======================================================
   ACTION CENTRÉE
====================================================== */

.alc-club-action{

	display:flex;

	justify-content:center;

	align-items:center;

	margin:35px 0 70px;

}


.alc-club-action .alc-button,
.alc-club-action .alc-club-button{

	width:max-content;

}

.alc-club-action .alc-button{

	box-shadow:none;

}

/* ======================================================
   CARTES ARBITRES
====================================================== */

.alc-arbitre-card{

	background:#fff;

	border:1px solid var(--alc-border);

	border-top:5px solid var(--alc-orange);

	border-radius:20px;

	padding:28px 30px;

	box-shadow:
		0 12px 30px rgba(15,23,42,.06),
		0 2px 8px rgba(15,23,42,.04);

	transition:
		transform .25s ease,
		box-shadow .25s ease,
		border-color .25s ease;

}


.alc-arbitre-card:hover{

	transform:translateY(-6px);

	border-color:rgba(248,89,3,.30);

	box-shadow:
		0 22px 50px rgba(15,23,42,.12),
		0 8px 20px rgba(15,23,42,.08);

}


.alc-arbitre-card h3{

	margin:0 0 22px;

	font-size:1.35rem;

	font-weight:800;

	line-height:1.3;

	color:var(--alc-orange);

}


.alc-arbitres-list{

	list-style:none;

	margin:0;

	padding:0;

}


.alc-arbitres-list li{

	position:relative;

	padding-left:18px;

	margin-bottom:10px;

	font-size:1rem;

	line-height:1.5;

	color:#555;

}


.alc-arbitres-list li::before{

	content:"";

	position:absolute;

	left:0;

	top:.65em;

	width:7px;

	height:7px;

	border-radius:50%;

	background:var(--alc-orange);

}


.alc-arbitres-list li:last-child{

	margin-bottom:0;

}

/* ======================================================
   IMAGE VALEURS DU CLUB
====================================================== */

.alc-hero-image{

	display:flex;

	justify-content:center;

	margin:50px 0;

}


.alc-hero-image img{

	width:100%;

	max-width:900px;

	height:auto;

	display:block;

	border-radius:24px;

	box-shadow:
		0 20px 45px rgba(15,23,42,.12);

	border:1px solid var(--alc-border);

}

@media(max-width:768px){

	.alc-hero-image{

		margin:30px 0;

	}


	.alc-hero-image img{

		border-radius:16px;

	}

}

/* ======================================================
   LABELS DU CLUB
====================================================== */


.alc-label-block{

	background:#fff;

	border:1px solid var(--alc-border);

	border-radius:28px;

	overflow:hidden;

	margin:50px 0;

	box-shadow:
		0 15px 35px rgba(15,23,42,.08);

}



/* HEADER LOGO */

.alc-label-header {

	position:relative;

	display:flex;

	align-items:center;

	justify-content:center;

	min-height:220px;

	padding:25px;

	background:#fafafa;

}

.alc-label-header img {

	max-width:320px;

	width:100%;

	height:auto;

	display:block;

}

/* BADGE */

.alc-label-badge {

	position:absolute;

	top:20px;

	right:25px;

	background:#f85903;

	color:white;

	font-weight:700;

	font-size:14px;

	padding:8px 18px;

	border-radius:50px;

}

/* CONTENU */

.alc-label-content {

	padding:40px;

}

.alc-label-content > p:first-child{

	font-size:17px;

	line-height:1.7;

	margin-bottom:35px;

}



/* GRILLE DES CRITERES */

.alc-label-grid {

	display:grid;

	grid-template-columns:repeat(4,1fr);

	gap:20px;

	margin-top:30px;

}


.alc-label-item {

	background:#fafafa;

	border-radius:16px;

	padding:20px;

}


.alc-label-item strong {

	color:#f85903;

	display:block;

	margin-bottom:10px;

	font-size:18px;

}


.alc-label-item p {

	margin:0;

	font-size:15px;

	line-height:1.5;

}

/* FOOTER LABEL */

.alc-label-footer {

	margin-top:30px;

	padding:20px;

	background:#fff4ed;

	border-radius:16px;

	color:#333;

}

/* RESPONSIVE TABLETTE */

@media(max-width:1100px){


	.alc-label-grid{

		grid-template-columns:repeat(2,1fr);

	}


}



/* RESPONSIVE MOBILE */

@media(max-width:700px){


	.alc-label-header{

		padding:25px;

	}


	.alc-label-badge{

		position:static;

		margin-top:20px;

	}


	.alc-label-content{

		padding:25px;

	}


	.alc-label-grid{

		grid-template-columns:1fr;

	}


}