@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';

/* Styles personnalisés */
body {
    font-family: 'Roboto', sans-serif;
}

.unclickable-link {
    color: inherit;
    text-decoration: none;
    cursor: text;
    pointer-events: none;
}

/* Animation de particules */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f3f4f6;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

/* Styles pour les sections */
section {
    position: relative;
    overflow: hidden;
}

/* Styles pour les titres */
h1, h2, h3 {
    font-weight: bold;
    color: #1a202c;
}

/* Styles pour les paragraphes */
p {
    line-height: 1.6;
}

/* Styles pour les liens */
a {
    transition: color 0.3s ease;
}

a:hover {
    color: #3182ce;
}

/* Styles pour les boutons */
.btn {
    @apply font-bold py-2 px-4 rounded;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Animation de survol pour les cartes */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Styles pour le footer */
footer {
    background-color: #2d3748;
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}