/**
 * Style de la page À propos — Redesign Premium
 * @author Shawn Dutil
 */

/* ===========================
   LAYOUT
=========================== */
.container_profil {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 72px 32px;
    background: var(--creme);
    min-height: calc(100vh - var(--navbar-h));
    width: 100%;
    margin: 0%;
}

.contact-info-container {
    width: 100%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===========================
   TITRE
=========================== */
.a-propos-titre {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--vert-profond);
    text-align: center;
    margin: 0 0 12px 0;
    width: 100%;
}

.a-propos-titre::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--or), transparent);
    margin: 16px auto 0;
}

/* ===========================
   BLOC DE TEXTE
=========================== */
.a-propos-texte {
    margin: 40px 0 0 0;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    border-top: 2px solid var(--or);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    padding: 48px 52px;
    position: relative;
}

/* Fleur de lys décorative en filigrane */
.a-propos-texte::before {
    content: '';
    position: absolute;
    top: 32px;
    right: 40px;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 56' fill='none'%3E%3Cpath d='M24 2C20 8 12 10 12 18C12 26 20 28 24 34C28 28 36 26 36 18C36 10 28 8 24 2Z' stroke='%23c9a84c' stroke-width='1.2'/%3E%3Cpath d='M24 34C21 37 16 38 15 42L33 42C32 38 27 37 24 34Z' stroke='%23c9a84c' stroke-width='1.2'/%3E%3Ccircle cx='24' cy='18' r='3' stroke='%23c9a84c' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
}

.a-propos-texte p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0 0 28px 0;
    border-left: 3px solid rgba(201, 168, 76, 0.4);
    padding-left: 24px;
}

.a-propos-texte p:last-of-type {
    margin-bottom: 0;
}

/* Signature */
.a-propos-texte .signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: #666;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    padding-left: 24px;
    border-left: 3px solid rgba(201, 168, 76, 0.4);
}

.a-propos-texte .signature strong {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.15rem;
    color: var(--vert-profond);
    display: block;
    margin-top: 6px;
    letter-spacing: 0.05em;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .container_profil  { padding: 48px 16px; }
    .a-propos-texte    { padding: 32px 24px; }
    .a-propos-titre    { font-size: 2rem; }

    .a-propos-texte p,
    .a-propos-texte .signature { padding-left: 16px; }
}

@media (max-width: 480px) {
    .a-propos-texte p  { font-size: 1.05rem; }
    .a-propos-titre    { font-size: 1.8rem; }
}