/* --- THÈME ET IDENTITÉ VISUELLE CPHO --- */
:root {
    --cpho-burgundy: #6b1426;
    --cpho-burgundy-light: #8a1c32;
    --cpho-silver: #b5b5bd;
    --cpho-dark-bg: #0b0b0c;
    --cpho-card-bg: rgba(25, 20, 22, 0.65);
    --cpho-border: rgba(107, 20, 38, 0.25);
    --cpho-text-muted: #cbd5e1;
}

html, body {
    /* Assure que la page prend toute la hauteur de l'écran, même si le contenu est court */
    min-height: 100%;
    margin: 0;
}

body {
    /* Crée le dégradé du noir (top) vers le blanc (bottom) */
    background: linear-gradient(to bottom, #000000 0%, #ffffff 100%);
    
    /* Empêche le dégradé de se répéter en boucle si la page est longue */
    background-attachment: fixed; 
}
	h1{
		font-family: "Times New Roman", Times, serif!important;
		font-style: italic;
		color:#000;
		text-shadow: 2px 2px 4px grey;
		text-align:center;
		/*border-radius: 5px;
		border: 1px solid silver;
		*/
	}
	 .news-ticker {
		width: 100%;
		background-color: #444;
		color: white;
		overflow: hidden;
		white-space: nowrap;
		position: relative;
		height: 40px;
	}
	.news-ticker p {
		display: none;
		position: absolute;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		line-height: 40px;
		text-align: center;
	}
	.news-ticker p.active {
		display: block;
		animation: ticker 35s linear infinite;
	}
	@keyframes ticker {
		0% {
			transform: translateX(100%);
		}
		100% {
			transform: translateX(-100%);
		}
	}
	.header {
		background-color: rgba(255, 255, 255, 0.8); /* Transparent background */
		color: black; /* Font color set to black */
		text-align: center;
		margin-top: 2px;
		margin-bottom: 2px;
	}
	.header img {
		width: 100%; /* Ensures the image takes up the full width of its container */
		height: auto; /* Maintains the aspect ratio of the image */
	}	
	li.NoBullet
	{
		list-style-type: none;
		text-decoration: none;
		text-indent: 10px;
		padding-top:10px;
	}	
.content-wrapper-bg {
    margin-top: 0 !important;
    padding-top: 1rem;
    background: radial-gradient(circle at 80% 20%, rgba(107, 20, 38, 0.12), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(138, 28, 50, 0.08), transparent 50%);
    border-radius: 0 0 20px 20px;
    padding-left: 1.0rem;
    padding-right: 1.0rem;
    padding-bottom: .5rem;
    margin-bottom: 0 !important;
}

.welcome-title {
    margin-top: 0 !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 30%, var(--cpho-silver) 70%, var(--dark-bg) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid var(--cpho-burgundy);
    padding-bottom: 12px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9), 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.ligueEstivaleForm {

}

.sticky-img-box {
    position: sticky;
    top: 30px;
    z-index: 10;
}
.innovative-img {
    border-radius: 16px;
    border: 2px solid rgba(107, 20, 38, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.innovative-img:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 50px rgba(107, 20, 38, 0.45);
    border-color: var(--cpho-burgundy-light);
}

.glass-panel {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

/* Structure de l'accordéon */
.accordion-container .set {
    margin-bottom: 14px;
    background: rgba(15, 15, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-container .set:hover {
    background: var(--cpho-silver);
    border-color: var(--cpho-silver);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.accordion-container .set:hover > a {
    color: #111113 !important;
}
.accordion-container .set:hover > a i.arrow-icon {
    color: #111113;
    background: rgba(0, 0, 0, 0.1);
}

.accordion-container .set:has(> a.active) {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.accordion-container .set > a.active {
    color: #ffffff !important;
    background: var(--cpho-burgundy-light) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.accordion-container .set > a.active i:not(.arrow-icon) {
    color: #ffffff !important;
}

.accordion-container .set:not(:has(> a.active)):hover {
    background: var(--cpho-silver);
    border-color: var(--cpho-silver);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.accordion-container .set:not(:has(> a.active)):hover > a {
    color: #111113 !important;
}
.accordion-container .set:not(:has(> a.active)):hover > a i.arrow-icon {
    color: #111113;
    background: rgba(0, 0, 0, 0.1);
}
.accordion-container .set > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.accordion-container .set > a i.arrow-icon {
    font-size: 0.9rem;
    color: var(--cpho-silver);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-container .set > a.active i.arrow-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(180deg);
}

.accordionContent {
    display: none;
    background: rgba(0, 0, 0, 0.1); 
    color: var(--cpho-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.custom-puck-list {
    list-style: none;
    padding: 1.5rem !important;
    margin: 0;
}
.custom-puck-list li {
    display: flex;
    align-items: center; 
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.6;
}
.custom-puck-list li:last-child {
    margin-bottom: 0;
}
.custom-puck-list li i.fa-hockey-puck {
    color: var(--cpho-burgundy-light);
    margin-right: 14px;
    flex-shrink: 0;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

/* Badge de Prix - Version Or Lumineux */
.price-tag {
    background: linear-gradient(135deg, #e6a100 0%, #f59e0b 50%, #d97706 100%);
    color: #0b0b0c; /* Texte foncé pour un contraste parfait et lisible */
    font-size: 1.45rem;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: none; /* Enlève l'ombre pour garder le texte propre */
}

.inner-content-box {

}

#map {
    height: 340px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--cpho-border);
}

.btn-premium-action {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}
.btn-premium-action:hover {
    background: var(--cpho-burgundy);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(107, 20, 38, 0.4);
}

.h3TextBox {
    margin: 10px;
    background: linear-gradient(to bottom, rgba(11, 11, 12, 0.85) 0%, rgba(181, 181, 189, 0.22) 100%);
    border-left: 8px solid var(--cpho-burgundy-light);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 8px solid var(--cpho-burgundy-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding: 1.25rem 1.25rem;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 2px 2px 6px rgba(0, 0, 0, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

/* Style de l'icône corrigé et illuminé */
.h3TextBox .h3-icon {
    width: 1.5rem;   /* Ajuste la largeur pour que ça fit avec la taille du texte */
    height: 1.5rem;  /* Garde un ratio carré */
    object-fit: contain;
    flex-shrink: 0;
    display: inline-block;
   
    /* Effet d'ombre portée pour détacher l'image du fond silver/noir */
    filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, 0.8));
    
    /* Optionnel : Si ton PNG est noir et que tu veux l'illuminer en vert émeraude, 
       tu peux activer ce filtre magique. Sinon, laisse cette ligne commentée : */
    /* filter: invert(53%) sepia(85%) saturate(443%) hue-rotate(110deg) brightness(97%) contrast(91%) drop-shadow(0 0 8px rgba(16, 185, 129, 0.6)); */
}


