/*
    a-propos.css - Styles pour la page à propos
    
    Ce module contient les styles spécifiques à la page à propos,
    ainsi que les styles pour la carte de présentation de l'entreprise.

    @author Alexandre BURIN
    @version 1.0.0
*/

/* Styles pour la carte de présentation de l'entreprise */
.carte-presentation-entreprise {
    background: white;
    border-radius: 24px;
    padding: 0;
    margin-bottom: 3rem;
    border: 2px solid var(--border-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.carte-presentation-entreprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-gold) 50%, var(--primary-brown) 100%);
    opacity: 0.9;
}

.carte-presentation-entreprise:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(122, 155, 110, 0.2);
    border-color: var(--primary-green);
}

.carte-presentation-entreprise-header {
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(122, 155, 110, 0.05) 0%, rgba(201, 169, 97, 0.04) 100%);
    border-bottom: 2px solid var(--border-light);
}

.carte-presentation-entreprise-header h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    letter-spacing: -0.4px;
    line-height: 1.25;
    text-align: center;
}

.carte-presentation-entreprise-content {
    padding: 2.5rem 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.carte-presentation-entreprise-content:has(.photo-auteur) {
    flex-direction: row;
}

.carte-presentation-entreprise-content .infos-auteur {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(122, 155, 110, 0.1) 0%, rgba(201, 169, 97, 0.06) 100%);
    border-radius: 18px;
    border: 1.5px solid var(--border-light);
}

.photo-auteur {
    flex-shrink: 0;
    margin: 0;
    order: -1;
}

.photo-auteur img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(122, 155, 110, 0.35);
    border: 6px solid var(--primary-green);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-auteur img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 24px 72px rgba(122, 155, 110, 0.45);
    border-color: var(--accent-gold);
}

/* Styles pour les informations de l'auteur dans la carte */
.auteur,
.profession-auteur,
.location {
    display: inline-flex;
    align-items: center;
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
    padding: 0.8rem 1.4rem;
    background: white;
    border-radius: 50px;
    border: 1.5px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    width: fit-content;
}

.auteur:hover,
.profession-auteur:hover,
.location:hover {
    background: var(--hover-bg);
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(122, 155, 110, 0.15);
}

.auteur {
    font-weight: 700;
    color: var(--primary-green);
    background: linear-gradient(135deg, rgba(122, 155, 110, 0.18) 0%, rgba(122, 155, 110, 0.08) 100%);
    border-color: var(--primary-green);
    border-width: 2px;
    box-shadow: 0 4px 12px rgba(122, 155, 110, 0.2);
}

.separator {
    color: var(--accent-gold);
    margin: 0 0.25rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.carte-presentation-entreprise-header h3 {
    font-size: 1.25rem;
}

.carte-presentation-entreprise-header p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.carte-presentation-entreprise-header em {
    color: var(--primary-green);
    font-style: italic;
}

.but-section {
    background: linear-gradient(135deg, rgba(122, 155, 110, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
}

.but-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    letter-spacing: -0.1px;
}

.but-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.but-section p:last-of-type {
    margin-bottom: 1.5rem;
}

.but-section strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* Styles pour les sections a-propos-site */
.a-propos-site {
    background: white;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.a-propos-site h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
    line-height: 1.3;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
}

/* Styles pour le contenu approche */
.approche-content {
    margin-bottom: 2rem;
}

.approche-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
}

.approche-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.approche-content em {
    color: var(--primary-green);
    font-style: italic;
}

.approche-content strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* Styles pour les figures dans approche-content et but-section */
.approche-content figure,
.but-section figure {
    margin: 1.5rem 0;
    text-align: center;
}

.approche-content img,
.but-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.approche-content img:hover,
.but-section img:hover {
    box-shadow: 0 12px 32px rgba(122, 155, 110, 0.2);
    border-color: var(--primary-green);
}

.approche-content figcaption,
.but-section figcaption {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Styles pour la liste des cas de naturopathie */
.liste-cas-naturopathie {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.liste-cas-naturopathie li {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1.5px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.liste-cas-naturopathie li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(122, 155, 110, 0.15);
    border-color: var(--primary-green);
}

.liste-cas-naturopathie li strong {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.liste-cas-naturopathie li em {
    color: #555;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
}

.note-fin {
    background: linear-gradient(135deg, rgba(122, 155, 110, 0.08) 0%, rgba(122, 155, 110, 0.03) 100%);
    border-radius: 8px;
    padding: 1.25rem;
    border: 1px solid var(--border-light);
}

.note-fin p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.note-fin a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
}

.note-fin a:hover {
    text-decoration: underline;
    background: none;
}

/* Responsive pour la section À propos */
@media (max-width: 768px) {
    .liste-cas-naturopathie {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .liste-cas-naturopathie li {
        padding: 1.25rem;
    }

    .carte-presentation-entreprise {
        padding: 0;
    }

    .carte-presentation-entreprise-header {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .carte-presentation-entreprise-header h2 {
        font-size: 1.6rem;
    }

    .carte-presentation-entreprise-content {
        padding: 2rem 1.5rem;
        flex-direction: column;
        gap: 2rem;
    }

    .photo-auteur {
        order: -1;
        margin: 0 auto;
    }

    .photo-auteur img {
        width: 180px;
        height: 180px;
        border-width: 4px;
    }

    .carte-presentation-entreprise-content .infos-auteur {
        width: 100%;
        padding: 1.5rem;
        align-items: center;
        gap: 0.8rem;
    }

    .auteur,
    .profession-auteur,
    .location {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }

    .carte-presentation-entreprise-header h3,
    .but-section h3 {
        font-size: 1.15rem;
    }

    .but-section {
        padding: 1.25rem;
    }

    .note-importante {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .note-fin {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .liste-cas-naturopathie li {
        padding: 1rem;
    }

    .liste-cas-naturopathie li strong {
        font-size: 1rem;
    }

    .liste-cas-naturopathie li em {
        font-size: 0.9rem;
    }

    .carte-presentation-entreprise {
        padding: 0;
    }

    .carte-presentation-entreprise-header {
        padding: 1.5rem 1rem 1rem 1rem;
    }

    .carte-presentation-entreprise-header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .carte-presentation-entreprise-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .photo-auteur img {
        width: 150px;
        height: 150px;
        border-width: 3px;
    }

    .carte-presentation-entreprise-content .infos-auteur {
        padding: 1.25rem;
        gap: 0.6rem;
    }

    .auteur,
    .profession-auteur,
    .location {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .carte-presentation-entreprise-header h3,
    .but-section h3 {
        font-size: 1.1rem;
    }

    .carte-presentation-entreprise-header p,
    .but-section p,
    .note-fin p {
        font-size: 0.95rem;
    }

    .carte-presentation-entreprise-content .infos-auteur {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
    }

    .auteur,
    .profession-auteur,
    .location {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .carte-presentation-entreprise-header h2 {
        font-size: 1.2rem;
    }

    .photo-auteur img {
        width: 130px;
        height: 130px;
    }
}

/* Responsive pour la carte de présentation */
@media (max-width: 1024px) {
    .carte-presentation-entreprise {
        padding: 0;
    }

    .carte-presentation-entreprise-content {
        padding: 2rem;
        gap: 2rem;
    }

    .photo-auteur img {
        width: 220px;
        height: 220px;
    }

    .carte-presentation-entreprise-content .infos-auteur {
        padding: 1.5rem;
        gap: 0.8rem;
    }
}
