/* Barre de navigation supérieure */
.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    pointer-events: none;
}

.top-navbar > * {
    pointer-events: auto;
}

.navbar-logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* En-tête principal */
.app-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    margin-top: 60px;
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    width: 100%;
    justify-content: center;
}

.logo-icon {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: -30px;
}

.highlight {
    color: var(--color-primary);
}

/* Profil utilisateur */
.user-profile {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.user-profile img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
}

.user-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 230, 153, 0.6);
    animation: pulse-glow 2s infinite ease-in-out;
}

/* Zone de bienvenue */
.welcome-message {
    margin-bottom: var(--spacing-md);
}

.welcome-message h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.welcome-message p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.header-with-action {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
