.gif-section {
    position: relative;
    width: 100%;
    min-height: 10vh; /* Hauteur flexible */
    height: auto;
    background: url('https://www.tantaly.com/cdn/shop/files/Daisy_Big_Ass_Realistic_Pussy_Sex_Doll_With_Tantabutt.gif?v=1693565559') no-repeat center center/cover;
    display: flex;
    align-items: center; /* Centre le contenu au milieu */
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 100px;
}

.gif-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Assombrissement + fort pour le contraste */
    backdrop-filter: blur(10px);
    z-index: 1;
}

.gif-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

/* Bouton modernisé */
.btn-gradient {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #ff8c00, #ff2e63);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 15px rgba(255, 46, 99, 0.5);
}

/* ✅ RESPONSIVITÉ - Ajustements pour mobile */
@media (max-width: 768px) {
    .gif-section {
        min-height: 33vh; /* Augmente la hauteur pour éviter d'écraser le contenu */
        padding-top: 65px;
    }

    .gif-content {
        max-width: 100%;
        padding: 10px;
    }

    .btn-gradient {
        font-size: 1rem;
        padding: 10px 18px;
    }
}





.card {
    transition: transform 0.3s ease, border 0.3s ease;
    /* border: 1px solid #ddd; */
    
}

.card:hover {
    border: 2px solid black;
    /* Bordure plus épaisse au survol */
    transform: scale(1.05);
    /* Légère zoom sur la carte */
}

.card .details-btn {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(88, 87, 87);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
}

.card:hover .details-btn {
    display: block;
}

.card-container {
    position: relative;
   
   
}

.card-img-top {
    object-fit: cover;
    height: 180px;
    width: 50%;
}