.curseur-pointeur{
    cursor: pointer;
}

.assie-card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 25px; /* 5px rounded corners */
  background-color:#fff;
  padding: 15px;
  position: relative;
  
  
}

.assie-card:hover { 
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

assie-card-body{
	
}

assie-card-footer{
  background-color: #F8F8F8;
}


.text-blanc{
  color: #fff;
}

 .btn-orange {
            position: relative;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            color: white;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
            letter-spacing: 1px;
            z-index: 1;
        }

        /* Effet de brillance */
        .btn-orange::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
            z-index: -1;
        }

        /* Effet de fond au survol */
        .btn-orange::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
            border-radius: 50px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -2;
        }

        /* Animation au survol */
        .btn-orange:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        .btn-orange:hover::before {
            left: 100%;
        }

        .btn-orange:hover::after {
            opacity: 1;
        }

        /* Animation au clic */
        .btn-orange:active {
            transform: translateY(1px);
            box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
        }

        /* Variante avec bordure lumineuse */
        .btn-orange-glow {
            position: relative;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            color: white;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
            letter-spacing: 1px;
            margin-left: 20px;
        }

        .btn-orange-glow:hover {
            box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
            transform: scale(1.05);
        }

        .btn-orange-glow:active {
            transform: scale(0.98);
        }

        /* Conteneur pour les boutons */
        .button-container {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        /* Version avec icône */
        .btn-orange-icon {
            position: relative;
            padding: 15px 40px 15px 50px;
            font-size: 18px;
            font-weight: 600;
            color: white;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
            letter-spacing: 1px;
            overflow: hidden;
        }

        .btn-orange-icon::before {
            content: '✨';
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .btn-orange-icon:hover::before {
            transform: translateY(-50%) rotate(20deg);
        }

        .btn-orange-icon:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        .btn-orange-icon:active {
            transform: translateX(2px);
        }

        /* Titre explicatif */
        h3 {
            text-align: center;
            color: white;
            margin-bottom: 20px;
            font-weight: 500;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
