.gradient-bg {
	background-color:#3b82f6;
}

/* Solution optimisée pour toutes les images dans conteneurs flex */
.bg-gray-50.flex.justify-center.items-center {
    width: fit-content;
    margin: 0 auto;
}

.text-custom-emerald {
	color: #10b981;
  }

.bg-custom-emerald {
	background-color: #10b981;
  }

.bg-custom-emerald-clear {
	background-color: #ecfdf5;
  }
  
.text-custom-orange {
	color: #fb923c;
  }
.side-borders {
	background-color: #f9fafb;
}
.form-control:focus {
	box-shadow: 0 0 0 3px rgba(171, 223, 213, 1);
}
.success-message {
	animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}




/* Styles de base pour le menu déroulant desktop */
#artList {
	position: absolute;
	left: 0;
	margin-top: 0.5rem;
	background: white;
	border-radius: 0.5rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	border: 1px solid #e5e7eb;
	z-index: 50;
	overflow: hidden;
}

#artList a {
	display: block;
	padding: 0.75rem 1rem;
	color: #374151;
	text-decoration: none;
	border-bottom: 1px solid #f3f4f6;
	transition: background-color 0.2s;
}

#artList a:last-child {
	border-bottom: none;
}

#artList a:hover {
	background-color: #f9fafb;
	border-radius: 0;
}






/* Styles responsive */
@media (max-width: 768px) {
	.flex-mobile-col {
		flex-direction: column;
	}

	.nav-mobile {
		display: flex;
		justify-content: center;
		margin: 1rem 0;
	}

	.w-mobile-full {
		width: 100%;
	}

	.footer-columns {
		flex-direction: column;
		align-items: center;
	}

	.footer-column {
		margin-bottom: 2rem;
		padding-left: 0;
		padding-right: 0;
	}

	header nav {               /* conteneur des liens */
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;             /* espace entre les liens */
	}



    #artList {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 0;
        margin: 0;
        width: 155px; /* Réduit de 280px à 200px */
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border: none;
		overflow: hidden;
    }

    #artList a {
        display: block;
        padding: 12px 16px; /* Réduit le padding */
        text-align: center;
        font-size: 14px; /* Texte plus petit */
        border-bottom: none;
        color: #374151;
        text-decoration: none;
    }

    #artList a:last-child {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    #artList a:hover {
        background: #f9fafb;
		border-radius: 0;
    }
	

}


/* Style pour format normal des vidéos YouTube */
.video-container {
    width: 550px;
    height: 309.375px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    background-color: rgb(148, 178, 255);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}



/* Styles pour les cartes de forfait - Option 3 : Scale + Glow + Icone */
.plan-card {
    transition: all 0.3s;
    position: relative;
    min-height: 140px;
}

input[type="radio"]:checked + .plan-card {
    transform: scale(1.05);
    border-color: #8b5cf6 !important;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2), 0 10px 25px rgba(139, 92, 246, 0.3) !important;
}

input[type="radio"]:checked + .plan-card .check-icon {
    opacity: 1;
    transform: scale(1);
}

.check-icon {
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}
