/*********************/
/*** Nous soutenir ***/
/*********************/
#nous_soutenir{
    margin : 0;
    padding : 0;
    display : flex;
    align-items : center;
    justify-content : center;
    flex-direction: column;
    width : 100%;
}

.pourquoi-title{
    display : flex;
    align-items : center;
    justify-content : left;
    width : 100%;
}

.pourquoi-title h1{
	color: #F37221;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

.image-eventchiffres{
    margin : 0;
    padding : 0;
    width : 100%;
    display : flex;
    align-items : center;
    justify-content: center;
}

.image-eventchiffres img {
    display: block;
    width: 100%;
    height: auto;
}

/*************************/
/*** Packs partenariat ***/
/*************************/
#packs_partenariat{
    margin : 0;
    padding : 0;
    display : flex;
    flex-direction : column;
    justify-content : center;
    align-items : center;
    width : 100%;
}

.tableau-title{
    margin : 0;
    padding : 0;
    display : flex;
    align-items : center;
    justify-content : center;
    width : 100%;
}

.tableau-title h1{
    color: #F37221;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

.image-tableau{
    margin : 0;
    padding : 0;
    width : 100%;
    display : flex;
    align-items : center;
    justify-content : center;
}

.image-tableau img{
    width : 100%;
    height : auto;
    display : block;
}

/****************/
/*** Download ***/
/****************/
#plaquette{
    display : flex;
    width : 100%;
    justify-content : center;
    align-items : center;
    flex-direction: column;
}

.plaquette-download-title {
	padding-top: 7.5vh;
	padding-bottom: 2.5vh;
    text-align: center;
    color: #F37221;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

.button-plaquette-download {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 60rem;
	height: 6rem;
	margin: 2rem auto 0;
	background-color: #F37221;
	color: white;
	font-size: clamp(0.8rem, 3vw, 1.5rem);
	font-weight: 500;
	border-radius: 0.5rem;
	border: 0.5rem solid #F37221;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.button-plaquette-download:hover {
	transform: scale(1.05);
}

/***************/
/*** Contact ***/
/***************/
#contact {
    display : flex;
    flex-direction: row;
    align-items : center;
    justify-content : center;
	gap : 5rem;
}

.contactez-nous {
	color : #000000;
	font-size : clamp(0.8rem, 3vw, 1.5rem);
	font-weight : 700;
}

.contact-button {
	width: clamp(20rem, 25vw, 30rem);
	display: flex;	
	justify-content: center;
	align-items: center;
	flex-direction: row;
	border: 4px solid #F37221;
	padding: 0.5rem 4rem;
	font-size: clamp(0.7rem, 3vw, 1.3rem);
	font-weight: 500;
	background-color: #FFFFFF;
	color: #000000;
	transition: transform 0.2s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.contact-button:hover {
	transform: scale(1.05);
}

/***************/
/*** Valeurs ***/
/***************/
#nos_valeurs{
    display : flex;
    width : 100%;
    justify-content : center;
    align-items : center;
    flex-direction : column;
}

.image-nos-valeurs{
    width : 100%;
    display : flex;
    align-items : center;
    justify-content : center;
}

.image-nos-valeurs img{
	margin: 12.5vh auto 0;
	width : 100%;
	height : auto;
}

/*****************/
/*** Confiance ***/
/*****************/
.confiance-title {
	padding-top: 7.5vh;
    text-align: center;
    color: #F37221;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

.slider-container {
    padding-top: 2.5vh;
    width: 100vw;
    height: 10rem;
    overflow: visible;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.slider-track {
    display: flex;
    align-items: center;
    width: calc(200% + 60rem);
    animation: slide 20s linear infinite;
}

.image-confiance {
    flex-shrink: 0;
    height: 10rem;
	width: auto;
    margin-right: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.image-confiance img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
	transition: transform 0.3s ease;
}

.confiance-bubble {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: black;
    padding: 1rem;
    border-radius: 1rem;
    width: 25rem;
	opacity: 0;
	visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 1px solid #000000;
}

.confiance-bubble::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: black;
}

.confiance-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 9px solid transparent;
    border-top-color: white;
}

.confiance-bubble h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #F37221;
}

.confiance-bubble p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
}

.image-confiance:hover .confiance-bubble {
    opacity: 1;
    visibility: visible;
}

.image-confiance:hover img {
    transform: scale(1.05);
}

@keyframes slide {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(-50%);
    }
}

.slider-container:hover .slider-track {
    animation-play-state: paused;
}

/*************************************/
/*** N'Hesitez-plus contactez nous ***/
/*************************************/
.hesitez-title {
	padding-top: 12.5vh;
    text-align: center;
    color: #F37221;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

.button-hesitez-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(5rem, 10vw, 15rem);
}

.button-hesitez {
	display: flex;	
	justify-content: center;
	align-items: center;
	flex-direction: row;
	width: 25rem;
	height: 4rem;
	font-size : clamp(0.8rem, 2vw, 1.5rem);
	font-weight : 500;
	border-radius : 0.5rem;
	background-color: #F37221;
	color: white;
	transition: transform 0.2s ease;
}	

.button-hesitez:hover {
	transform: scale(1.05);
}

/***************************/
/*** Plaquette & Réseaux ***/
/***************************/
#contact_reseaux{
    width : 100%;
    display : flex;
    align-items : center;
    flex-direction : column;
    justiy-content : center;
}

.plaquette-iframe-container {
	padding-top: 7.5vh;
	padding-bottom: 10vh;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 5rem;
}

.plaquette-iframe {
	margin: 0 auto 0;
	display: flex;
	flex: 1;
}

.plaquette-iframe iframe {
	width: 100%;
	height: 72.5vh;
}

.reseaux-container {
	margin-top: 2.5vh;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: flex-start;
	flex: 1;
}

.reseaux-title {
	color: black;
	font-size: clamp(1rem, 3vw, 1.75rem);
	font-weight: 600;
	flex: 1;
}

.button-reseaux {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 1rem;
	cursor: pointer;
}

.reseaux-text {
	color: #000000;
	font-size: clamp(0.8rem, 3vw, 1.5rem);
	font-weight: 500;
}

.button-reseaux:hover {
	transform: scale(1.05);
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    body {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    body::-webkit-scrollbar {
        display: none;
    }
    
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .slider-container {
        overflow-x: hidden;
    }
    
    .pourquoi-title h1,
    .tableau-title,
    .plaquette-download-title,
    .confiance-title,
    .hesitez-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-left: 0;
        text-align: center;
    }

    .pourquoi-title{
        justify-content : center;
    }
    
    .image-eventchiffres img,
    .image-tableau img {
        width: 95%;
        margin: 30px auto 0;
        padding-left: 0;
    }
    
    .button-plaquette-download {
        width: 90%;
        max-width: 30rem;
        height: 6rem;
        font-size: clamp(0.7rem, 3vw, 1.3rem);
        margin: 1rem auto 0;
    }
    
    #contact{
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 3vh;
        margin-left: 0;
        text-align: center;
    }
    
    .contactez-nous {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }
    
    .contact-button {
        width: 90%;
        max-width: 25rem;
        font-size: clamp(1rem, 3vw, 1.3rem);
        padding: 0.8rem 2rem;
    }
    
    .image-nos-valeurs img {
        margin: 8vh auto 0;
        width: 100%;
    }
    
    .slider-container {
        height: 8rem;
        margin-left: calc(-5%);
        margin-right: calc(-5%);
        width: 100vw;
        position: relative;
        overflow: visible;
        z-index: 1;
    }
    
    .slider-track {
        width: calc(200% + 40rem);
        overflow: visible;
    }
    
    .image-confiance {
        height: 8rem;
        margin-right: 6rem;
        overflow: visible;
        cursor: pointer;
        position: relative;
        z-index: 10;
    }
    
    .confiance-bubble {
        width: 18rem;
        padding: 0.8rem;
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        max-width: 90vw;
        background: white;
        color: black;
        border-radius: 1rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        border: 1px solid #000000;
        word-wrap: break-word;
        display: block;
    }
    
    .confiance-bubble h4 {
        font-size: 1rem;
        margin: 0 0 0.3rem 0;
        font-weight: 600;
        color: #F37221;
    }
    
    .confiance-bubble p {
        font-size: 0.8rem;
        line-height: 1.2;
        margin: 0;
    }

    .confiance-bubble::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid transparent;
        border-top-color: black;
        z-index: 10000;
    }
    
    .confiance-bubble::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 9px solid transparent;
        border-top-color: white;
        z-index: 10000;
    }
    
    .image-confiance:hover .confiance-bubble {
        opacity: 1;
        visibility: visible;
    }
    
    .button-hesitez-container {
        width : 100%;
        flex-direction: column;
        gap: 2rem;
        padding-top: 3vh;
    }
    
    .button-hesitez {
        width: 90%;
        max-width: 25rem;
        height: 5rem;
        font-size: clamp(1rem, 3vw, 1.3rem);
    }
    
    .plaquette-iframe-container {
        flex-direction: column;
        gap: 3rem;
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    
    .plaquette-iframe {
        order: 2;
    }
    
    .plaquette-iframe iframe {
        height: 50vh;
        min-height: 300px;
    }
    
    .reseaux-container {
        order: 1;
        margin-top: 0;
        align-items: center;
        text-align: center;
    }
    
    .reseaux-title {
        font-size: clamp(1rem, 4vw, 1.3rem);
        text-align: center;
    }
    
    .button-reseaux {
        justify-content: center;
        width: 100%;
        max-width: 20rem;
    }
    
    .reseaux-text {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }
}

@media (max-width: 480px) {
	body {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    body::-webkit-scrollbar {
        display: none;
    }
    
    html {
        overflow-x: hidden;
    }
    
    .pourquoi-title h1,
    .tableau-title,
    .plaquette-download-title,
    .confiance-title,
    .hesitez-title {
        font-size: clamp(1.2rem, 7vw, 2rem);
        padding-top: 4vh;
    }
    
    .image-eventchiffres img,
    .image-tableau img {
        width: 98%;
        margin: 20px auto 0;
    }
    
    .button-plaquette-download {
        width: 95%;
        height: 5rem;
        font-size: clamp(0.8rem, 5vw, 1.2rem);
    }
    
    .contact-container {
        gap: 1rem;
        padding-top: 2vh;
    }
    
    .contact-button {
        width: 95%;
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        padding: 0.7rem 1.5rem;
    }
    
    .slider-container {
        height: 6rem;
        margin-left: calc(-3%);
        margin-right: calc(-3%);
        overflow: visible;
        z-index: 1;
    }
    
    .image-confiance {
        height: 6rem;
        margin-right: 4rem;
        overflow: visible;
        cursor: pointer;
        position: relative;
        z-index: 10;
    }
    
    .confiance-bubble {
        width: 16rem;
        padding: 0.6rem;
        max-width: 85vw;
        background: white;
        color: black;
        border-radius: 1rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        border: 1px solid #000000;
        word-wrap: break-word;
        display: block;
    }

    .confiance-bubble h4 {
        font-size: 0.9rem;
        margin: 0 0 0.3rem 0;
        font-weight: 600;
        color: #F37221;
    }
    
    .confiance-bubble p {
        font-size: 0.7rem;
        line-height: 1.1;
        margin: 0;
    }
    
    .confiance-bubble::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 8px solid transparent;
        border-top-color: black;
        z-index: 10000;
    }
    
    .confiance-bubble::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 7px solid transparent;
        border-top-color: white;
        z-index: 10000;
    }
    
    .image-confiance:hover .confiance-bubble {
        opacity: 1;
        visibility: visible;
    }
    
    .button-hesitez {
        width: 95%;
        height: 4.5rem;
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }
    
    .plaquette-iframe iframe {
        height: 40vh;
        min-height: 250px;
    }
    
    .reseaux-title {
        font-size: clamp(0.9rem, 5vw, 1.1rem);
    }
    
    .reseaux-text {
        font-size: clamp(0.8rem, 4vw, 1rem);
    }
}


/**********************************/
/*** Offre adhérent association ***/
/**********************************/

#offre_adherent_association {
    width : 100%;
    margin: 30px auto;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

#offre_adherent_association h2 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dee2e6;
}

#offre_adherent_association .credit {
    font-size: 16px;
    color: #F37221;
    font-weight: 500;
    margin-left: 10px;
}

#offre_adherent_association h4 {
    color: black;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

#offre_adherent_association .bullet-item {
    background-color: #f8f9fa;
    padding: 15px;
    margin: 12px 0;
    border-left: 3px solid #F37221;
    border-radius: 0 4px 4px 0;
}

#offre_adherent_association .bullet-item p {
    margin: 0;
    color: #495057;
    line-height: 1.5;
}

#offre_adherent_association .highlight-box {
    background-color: #f1f3f8;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

#offre_adherent_association .highlight-box .bullet-item {
    border-left-color: #F37221;
    margin: 10px 0;
    padding-left: 12px;
}

#offre_adherent_association strong {
    color: #2c3e50;
    font-weight: 600;
}

#offre_adherent_association a {
    color: #4e73df;
    text-decoration: none;
    font-weight: 500;
}

#offre_adherent_association a:hover {
    text-decoration: underline;
}

#offre_adherent_association p {
    color: #495057;
    line-height: 1.6;
    margin: 10px 0;
}

.nancy{
    color : #F37221;
}