/*
Theme Name: Fusion Celeste Theme
Author: Saber
Description: Thème épuré pour le groupe Fusion Céleste
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    scroll-behavior: smooth;
}

.animate-bounce-slow {
    animation: bounce 4s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.platform-card {
    transition: all 0.3s ease;
    border: 1px solid #fce7f3;
    background: white;
}

.platform-card:hover {
    transform: scale(1.05);
    background-color: #fdf2f8;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Force l'activation des clics sur tous les liens du site */
a {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 999 !important;
}