/* ========================
PAGE BIEN-ÊTRE FBKC STYLES
=========================== */

/* Container principal */
.bienetre-container {
    background: linear-gradient(135deg, var(--bs-gray-50) 0%, var(--bs-body-bg) 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

/* Titre principal */
.bienetre-title {
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.bienetre-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    border-radius: 2px;
}

.bienetre-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bs-body-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.bienetre-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    border-radius: 2px;
}

/* Card principale avec image */
.bienetre-hero-card {
    background: var(--bs-body-bg);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--bs-border-color);
    overflow: hidden;
    margin-bottom: 3rem;
    transition: all 0.4s ease;
    position: relative;
}

.bienetre-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    z-index: 1;
}

.bienetre-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Mode dark pour hero card */
[data-bs-theme="dark"] .bienetre-hero-card {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .bienetre-hero-card:hover {
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

.bienetre-hero-image {
    border-radius: 15px;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bienetre-hero-card:hover .bienetre-hero-image {
    transform: scale(1.02);
}

.bienetre-hero-content {
    padding: 2.5rem;
}

.bienetre-hero-title {
    color: var(--bs-body-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bienetre-hero-text {
    color: var(--bs-secondary-color);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Cards de section */
.bienetre-section-card {
    background: var(--bs-body-bg);
    border-radius: 20px;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.bienetre-section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Mode dark pour section cards */
[data-bs-theme="dark"] .bienetre-section-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .bienetre-section-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Headers des sections */
.bienetre-section-header {
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    padding: 1.3rem 1.5rem;
    margin: 0;
    position: relative;
}

.bienetre-section-header::after {
    display: none;
}

.bienetre-section-title {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.bienetre-section-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-right: 0.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Corps des sections */
.bienetre-section-body {
    padding: 2rem;
}

.bienetre-section-text {
    color: var(--bs-secondary-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.bienetre-section-text:last-child {
    margin-bottom: 0;
}

/* Mise en valeur du texte important */
.bienetre-section-text strong {
    color: var(--bs-body-color);
    font-weight: 700;
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.1) 0%, rgba(209, 0, 0, 0.1) 100%);
    padding: 2px 4px;
    border-radius: 3px;
}

.bienetre-section-text u {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    background-size: 100% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 2px;
}

/* Icônes pour chaque section */
.section-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

/* Séparateur entre sections */
.section-separator {
    height: 2px;
    background: linear-gradient(135deg, transparent 0%, #0047FF 20%, #D10000 80%, transparent 100%);
    margin: 3rem 0;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
    .bienetre-title {
        font-size: 2rem;
    }
    
    .bienetre-subtitle {
        font-size: 1.4rem;
    }
    
    .bienetre-hero-content {
        padding: 1.5rem;
    }
    
    .bienetre-hero-title {
        font-size: 1.4rem;
    }
    
    .bienetre-hero-text {
        font-size: 1rem;
    }
    
    .bienetre-section-body {
        padding: 1.5rem;
    }
    
    .bienetre-section-title {
        font-size: 1rem;
    }
    
    .section-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .bienetre-container {
        padding: 1rem 0;
    }
    
    .bienetre-title {
        font-size: 1.8rem;
    }
    
    .bienetre-section-header::after {
        display: none;
    }
}