
/* Simple Navigation Section Styles */
.navigation-section {
    padding: 50px 0;
    background-color:#FDF7F3;
}

.simple-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Suppression complète des images */
.simple-nav-image {
    display: none;
}

/* Styles pour les formes de "flaque d'eau" */
.sticker-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FADAB9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Formes très arrondies - flaques douces */
.simple-nav-card:nth-child(1) .sticker-circle {
    background-color: #FADAB9;
    border-radius: 70% 50% 60% 40% / 50% 40% 60% 50%;
}

.simple-nav-card:nth-child(2) .sticker-circle {
    background-color: #F9EBE7;
    border-radius: 60% 70% 50% 40% / 40% 50% 60% 70%;
}

.simple-nav-card:nth-child(3) .sticker-circle {
    background-color: #f8c7a1;
    border-radius: 50% 60% 70% 50% / 60% 50% 40% 70%;
}

.simple-nav-card:nth-child(4) .sticker-circle {
    background-color: #F2DCCF;
    border-radius: 65% 45% 55% 35% / 45% 65% 35% 55%;
}

/* Animation très subtile au survol */
.simple-nav-card:hover .sticker-circle {
    animation: gentleRipple 1.2s ease-in-out;
}

@keyframes gentleRipple {
   0% {
        transform: scale(1);
    }
     25% {
        border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
    }
    50% {
        border-radius: 40% 60% 50% 50% / 50% 40% 50% 60%;
    }
    75% {
        border-radius: 55% 45% 65% 35% / 45% 55% 45% 55%;
    }
    100% {
        transform: scale(1);
    }
}


/* Icône/Sticker à l'intérieur de la flaque */
.sticker-icon {
    width: 60px;
    height: 60px;
    color: #1E555C;
    transition: all 0.3s ease;
}

/* Titre de la carte */
.nav-card-title {
    font-family: serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #1E555C;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease;
}



/* Remplacer l'ancien style */
.navigation-section .section-title h2 {
    background-color: rgba(252, 252, 252) !important;
    padding: 15px 30px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .simple-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .simple-nav-card {
        min-height: 180px;
        padding: 25px 15px;
    }
    
    .sticker-circle {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .sticker-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .simple-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .simple-nav-card {
        min-height: 160px;
        padding: 20px 15px;
    }
    
    .sticker-circle {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }
    
    .sticker-icon {
        width: 30px;
        height: 30px;
    }
    
    .nav-card-title {
        font-size: 1.2rem;
    }
}

/* Pour le responsive si nécessaire */
@media (max-width: 768px) {
    .section-title h2 {
        padding: 12px 20px;
        font-size: 1.8rem;
    }
}