:root {
    --primary-color: #ec4899; /* Rose vif du logo */
    --secondary-color: #fdf2f8; /* Rose très clair */
    --accent-color: #3b82f6; /* Bleu vif du logo */
    --text-dark: #1e293b; /* Bleu ardoise foncé */
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    scroll-behavior: smooth;
    background-color: #ffffff;
}

.cursive {
    font-family: 'Dancing Script', cursive;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero-gradient {
    background: linear-gradient(rgba(255, 249, 251, 0.8), rgba(255, 249, 251, 0.8)), url('img/ou.jpg');
    background-size: cover;
    background-position: center;
}

.card-zoom:hover img {
    transform: scale(1.05);
}

.btn-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #3b82f6 100%);
    color: white;
    transition: all 0.3s ease;
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
    filter: brightness(1.1);
}