/* ===== BARRE FIXE HAUT ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #0d6efd; /* bleu pro */
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Décalage contenu (IMPORTANT) */
body {
    padding-top: 64px;
}

/* Mobile */
@media (max-width: 600px) {
    .company-name {
        font-size: 16px;
    }

    .logo {
        height: 32px;
    }
}
