/* ============================================================
   NATURO CONSULTATIONS SECTION
   ============================================================ */

.naturo-consultations-section {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    background-color: #FAFAFA;
    overflow: hidden;
}

.naturo-consultations-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.naturo-consultations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.naturo-consultations-title-wrapper {
    position: relative;
    display: inline-block;
}

.naturo-consultations-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-consultations-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading, 'Lexend Deca', sans-serif);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-text);
    margin: 0;
    text-shadow: 0 0 30px #FFFFFF, 0 0 60px #FFFFFF;
}

/* Grille des offres - 2 colonnes */
.naturo-offres-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

/* Carte gauche - définit la hauteur */
.naturo-offres-grid > .naturo-offre-card {
    flex: 1;
}

/* Colonne droite avec carte + image */
.naturo-offre-column-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.naturo-offre-column-right > .naturo-offre-card {
    flex-shrink: 0;
}

/* Image - prend l'espace restant */
.naturo-consultations-image-container {
    flex: 1 1 0;
    min-height: 0;
    height: 0;
    overflow: hidden;
}

.naturo-consultations-image-container img,
.naturo-consultations-image-container picture {
    width: 100%;
    height: 100%;
    display: block;
}

.naturo-consultations-image {
    object-fit: cover;
    object-position: center;
}

/* Offre Card */
.naturo-offre-card {
    background-color: #FAFAFA;
    border: 1px solid rgba(0, 170, 170, 0.15);
    border-radius: 16px;
    padding: 2rem;
}

.naturo-offre-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
}

.naturo-offre-title {
    font-family: var(--font-heading, 'Lexend Deca', sans-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
}

.naturo-offre-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.naturo-offre-location {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.naturo-offre-details {
    font-family: var(--font-heading, 'Lexend Deca', sans-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(0, 170, 170, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.naturo-offre-content {
    font-family: var(--font-primary, 'Inter', sans-serif);
}

.naturo-offre-intro {
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 1rem 0;
}

.naturo-offre-list {
    margin: 0;
    padding-left: 1.25rem;
    list-style: none;
}

.naturo-offre-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text);
}

.naturo-offre-list li strong {
    font-weight: 600;
    color: #333333;
}

.naturo-offre-list li::before {
    content: '';
    position: absolute;
    left: -0.75rem;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* Couleurs alternées pour les puces */
.naturo-offre-list li:nth-child(4n+1)::before { background: var(--color-primary); }
.naturo-offre-list li:nth-child(4n+2)::before { background: #A0415F; }
.naturo-offre-list li:nth-child(4n+3)::before { background: #F4A261; }
.naturo-offre-list li:nth-child(4n+4)::before { background: #2A9D8F; }

/* Image dans la colonne droite */
.naturo-consultations-image-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.naturo-consultations-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Note Rythme */
.naturo-note-rythme {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text);
    padding: 1.25rem 1.5rem;
    background: rgba(0, 170, 170, 0.05);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    margin: 0 0 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.naturo-consultations-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.naturo-btn-primary,
.naturo-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.naturo-btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.naturo-btn-primary:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.naturo-btn-secondary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: none;
}

.naturo-btn-secondary:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

/* Note Honoraires */
.naturo-note-honoraires {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    text-align: center;
    margin: 0;
}

.naturo-note-honoraires p {
    margin: 0;
}

.naturo-note-honoraires p:first-child {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 1024px) {
    .naturo-consultations-section { padding: 4rem 0; }
    .naturo-offres-grid { gap: 1.5rem; }
    .naturo-consultations-title-decorative { font-size: 96px; }
    .naturo-consultations-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .naturo-consultations-section { padding: 3rem 0; }
    .naturo-consultations-container { padding: 0 1rem; }
    .naturo-offres-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .naturo-consultations-image-container {
        flex: none;
        height: 180px;
    }
    .naturo-consultations-title-decorative { font-size: 64px; }
    .naturo-consultations-title { font-size: 28px; }
    .naturo-offre-card { padding: 1.5rem; }
    .naturo-offre-title { font-size: 1.25rem; }
    .naturo-consultations-cta { flex-direction: column; }
    .naturo-btn-primary,
    .naturo-btn-secondary { width: 100%; }

    /* "En ligne ou a Strasbourg" + tarif ("1h - 110€" / "45min - 80€") sont
       cote a cote (gap 1rem) sur la carte "1ere consultation" a la plupart
       des largeurs mobiles, mais le tarif plus long de "Consultation de
       suivi" (45min - 80€) fait deborder et retombe seul sur une 2e ligne :
       incoherent entre les deux cartes. On reduit le gap et on met le tarif
       AVANT l'emplacement (a gauche), pour les deux cartes. */
    .naturo-offre-meta {
        gap: 0.5rem;
    }
    .naturo-offre-details {
        order: -1;
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .naturo-consultations-section { padding: 2rem 0; }
    .naturo-consultations-title-decorative { font-size: 48px; }
    .naturo-consultations-title { font-size: 24px; }
    .naturo-offre-card { padding: 1.25rem; }
}
