/* Palette Daisy Lambert — rosé / doré / crème */
:root {
    --rose: #e8a0b4;
    --rose-light: #f5d5de;
    --rose-dark: #c47a91;
    --gold: #c9a84c;
    --gold-light: #e6d59e;
    --cream: #fdf6f0;
    --text-dark: #3d2c2e;
    --text-muted: #7a6163;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
}

/* Boutons personnalisés */
.btn-rose {
    background-color: var(--rose);
    color: white;
    transition: background-color 0.2s;
}
.btn-rose:hover {
    background-color: var(--rose-dark);
}

.btn-gold {
    background-color: var(--gold);
    color: white;
    transition: background-color 0.2s;
}
.btn-gold:hover {
    background-color: #b8953e;
}

/* Gradient hero */
.hero-gradient {
    background: linear-gradient(135deg, var(--rose-light) 0%, var(--cream) 50%, var(--gold-light) 100%);
}

/* Nav active link */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    margin: 0 auto;
    border-radius: 2px;
}

/* Card hover */
.service-card {
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(200, 122, 145, 0.15);
}
