/**
 * CDS Welcome Message - Front styles
 * Variante A : encadré avec avatar, aux couleurs de Créateur de Sommets.
 *
 * Palette CDS :
 *   teal   #2C6E7F
 *   orange #E07A3C
 *   yellow #F0B838
 *   green  #7A9E6E
 *   purple #6B5B95
 *   red    #C84B3A
 */

.cds-welcome {
    position: relative;
    background: #FCEFE5; /* orange clair */
    border-left: 4px solid #E07A3C; /* orange */
    border-radius: 10px;
    padding: 22px 50px 22px 28px;
    margin: 0 0 32px 0;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

/* Variante "visiteur de retour" : teint teal pour différencier visuellement */
.cds-welcome--returning {
    background: #E8F1F4; /* teal clair */
    border-left-color: #2C6E7F; /* teal */
}

.cds-welcome__avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #E07A3C;
    background-size: cover;
    background-position: center;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cds-welcome__content {
    flex: 1;
    min-width: 0;
}

.cds-welcome__title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: 18px;
    color: #E07A3C;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.cds-welcome--returning .cds-welcome__title {
    color: #2C6E7F;
}

.cds-welcome__text {
    color: #2A3742;
    font-size: 15px;
    margin: 0;
    line-height: 1.55;
}

.cds-welcome__text a {
    color: #E07A3C;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid #E07A3C;
    transition: opacity 0.2s ease;
}

.cds-welcome--returning .cds-welcome__text a {
    color: #2C6E7F;
    border-bottom-color: #2C6E7F;
}

.cds-welcome__text a:hover {
    opacity: 0.75;
}

.cds-welcome__close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: 0;
    color: #5A6873;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    padding: 4px 8px;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    font-family: inherit;
}

.cds-welcome__close:hover,
.cds-welcome__close:focus {
    opacity: 1;
    outline: none;
}

/* Animation de fermeture */
.cds-welcome.is-closing {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Responsive */
@media (max-width: 600px) {
    .cds-welcome {
        flex-direction: column;
        gap: 12px;
        padding: 18px 40px 18px 20px;
    }
    .cds-welcome__avatar {
        width: 48px;
        height: 48px;
    }
    .cds-welcome__title {
        font-size: 17px;
    }
    .cds-welcome__text {
        font-size: 14px;
    }
}
