/* ============================================================
   NATURO APPROCHE NATURELLE SECTION
   ============================================================ */

.naturo-approche-section {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    background-color: #FAFAFA;
    overflow: hidden;
}

.naturo-approche-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.naturo-approche-header {
    text-align: center;
    margin-bottom: 2rem;
}

.naturo-approche-title-wrapper {
    position: relative;
    display: inline-block;
}

.naturo-approche-title-decorative {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Birthstone Bounce', cursive;
    font-size: 128px;
    color: var(--color-primary);
    opacity: 0.3;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.naturo-approche-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading, 'Lexend Deca', sans-serif);
    font-size: 42px;
    font-weight: 400;
    color: var(--color-text);
    margin: 0;
    text-shadow: 0 0 30px #FFFFFF, 0 0 60px #FFFFFF;
}

/* Intro */
.naturo-approche-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.naturo-approche-intro p {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 1.5rem 0;
}

.naturo-approche-intro p strong {
    font-weight: 600;
    color: #333333;
}

.naturo-approche-pillars-intro {
    display: inline-block;
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

.naturo-approche-pillars-intro li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-text);
}

.naturo-approche-pillars-intro li strong {
    font-weight: 600;
    color: #333333;
}

.naturo-approche-pillars-intro li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Couleurs différentes pour chaque pilier */
.naturo-approche-pillars-intro li:nth-child(1)::before { background: var(--color-primary); }
.naturo-approche-pillars-intro li:nth-child(2)::before { background: #A0415F; }
.naturo-approche-pillars-intro li:nth-child(3)::before { background: #F4A261; }

/* Pillars */
.naturo-approche-pillars {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.naturo-pillar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.naturo-pillar--reverse {
    direction: rtl;
}

.naturo-pillar--reverse > * {
    direction: ltr;
}

/* Image */
.naturo-pillar-image-wrapper {
    position: relative;
    height: 400px;
}

.naturo-pillar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Content */
.naturo-pillar-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.naturo-pillar-title {
    font-family: var(--font-heading, 'Lexend Deca', sans-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.naturo-pillar-text p {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 1rem 0;
}

.naturo-pillar-text p:last-child {
    margin-bottom: 0;
}

.naturo-pillar-text p strong {
    font-weight: 600;
    color: #333333;
}

/* Responsive */
@media (max-width: 1024px) {
    .naturo-approche-section { padding: 4rem 0; }
    .naturo-approche-title-decorative { font-size: 96px; }
    .naturo-approche-title { font-size: 32px; }
    .naturo-pillar { gap: 3rem; }
    .naturo-pillar-image-wrapper { height: 350px; }
    .naturo-pillar-title { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .naturo-approche-section { padding: 3rem 0; }
    .naturo-approche-container { padding: 0 1rem; }
    .naturo-approche-title-decorative { font-size: 64px; }
    .naturo-approche-title { font-size: 26px; }
    .naturo-approche-intro { margin-bottom: 3rem; }
    .naturo-approche-intro p { font-size: 1rem; }
    .naturo-approche-pillars { gap: 3rem; }
    .naturo-pillar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .naturo-pillar--reverse { direction: ltr; }
    .naturo-pillar-image-wrapper { height: 280px; }
    .naturo-pillar-title { font-size: 1.375rem; }
    .naturo-pillar-text p { font-size: 0.9375rem; }
}

@media (max-width: 480px) {
    .naturo-approche-section { padding: 2rem 0; }
    .naturo-approche-title-decorative { font-size: 48px; }
    .naturo-approche-title { font-size: 22px; }
    .naturo-pillar-image-wrapper { height: 240px; }
    .naturo-pillar-title { font-size: 1.25rem; }
}
