/* Styles globaux et personnalisés */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animation douce pour le titre */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out both;
}

/* Transitions douces pour les liens */
a {
    transition: all 0.3s ease;
}

/* Scroll fluide */
html {
    scroll-behavior: smooth;
}

/* Utilitaires pour la transparence des images de fond */
.bg-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Personnalisation de la sélection de texte */
::selection {
    background: #be6b7a; /* primary color */
    color: white;
}
