/* ========================= */
/* 🌿 STYLE GLOBAL */
/* ========================= */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #e71dee;
    padding-top: 110px;
}

/* ========================= */
/* 🎯 HERO */
/* ========================= */
.hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        background-position: center 30%;
    }
}

/* ========================= */
/* 🏷️ TITRES */
/* ========================= */
.section-title {
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* ========================= */
/* 📦 CARTES */
/* ========================= */
.card {
    margin-bottom: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.card-body {
    text-align: center;
    color: #e71dee;
}

.card:hover {
    transform: translateY(-5px);
}

/* ========================= */
/* 📋 LISTES */
/* ========================= */
#corporelle ul,
#conseils ul {
    list-style: none;
    padding-left: 0;
}

#corporelle li,
#conseils li {
    color: #e71dee;
    margin-bottom: 8px;
}

/* ========================= */
/* 🧭 NAVBAR (CORRIGÉE) */
/* ========================= */

.navbar {
    background-color: #ff06a0 !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

/* Container flex propre */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.navbar-brand {
    font-weight: 700;
    font-size: 22px;
    color: white !important;
    white-space: nowrap;
}

/* Menu centré */
.navbar-nav {
    width: 100%;
    justify-content: center;
    align-items: center;
}

/* Links */
.navbar-dark .nav-link {
    color: white !important;
    font-size: 18px;
    font-weight: 600;
}

.navbar-dark .nav-link:hover {
    color: #e2e6ea !important;
}

/* Burger */
.navbar-toggler {
    border: none;
    z-index: 1000;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 20px;
    }
}

/* ========================= */
/* 📌 FOOTER */
/* ========================= */
footer {
    background-color: #ff06a0;
}