* {
  outline: none !important;
  box-shadow: none !important;
}
button, a {
  outline: none !important;
  box-shadow: none !important;
}
button:focus, a:focus, input:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* 🌌 HEADER PREMIUM SUPER SMOOTH */
.rmj-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 0.7rem 1.4rem;

    backdrop-filter: blur(14px);
    background: rgba(12, 25, 60, 0.58);
    border-bottom: 1px solid rgba(255,255,255,0.09);

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    animation: fadeDrop 1s ease forwards;

    z-index: 99;
}

@keyframes fadeDrop {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 🔥 MAPA Avatar floating au centre */
.rmj-mapa-bubble {
    position: absolute;
    left: 50%;
    top: -18px;
    transform: translateX(-50%);

    width: 80px;
    height: 80px;
    border-radius: 50%;

    background: linear-gradient(135deg,#7F5BFF,#3CB8FF);
    padding: 4px;

    animation: mapaFloat 3.2s ease-in-out infinite;
}

.rmj-mapa-bubble img {
    width: 100%; height: 100%;
    border-radius: 50%;
}

@keyframes mapaFloat {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-7px); }
  100% { transform: translateX(-50%) translateY(0); }
}

/* LOGO */
.navbar-brand img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.3s ease;
}
.navbar-brand img:hover {
    transform: rotate(4deg) scale(1.06);
}

/* TITRE */
.navbar-brand {
    font-size: 1.45rem;
    font-weight: 700;
    color: white !important;
}

/* LIENS */
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600;
    letter-spacing: 0.25px;
    padding: 8px 14px;
    transition: 0.3s ease;
    position: relative;
}

/* Soulignement fluide SaaS */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 4px;
    width: 0%; height: 2px;
    background: linear-gradient(90deg,#00eaff,#ff914d);
    transition: width 0.3s ease;
    border-radius: 40px;
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}
.navbar-nav .nav-link:hover {
    color: #fff !important;
}

/* 🟣 CTA DASHBOARD */
.btn-dashboard {
    background: linear-gradient(90deg,#9a6cff,#4ca9ff);
    border: none;
    color: white;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 50px;
    transition: 0.3s ease;
}
.btn-dashboard:hover {
    transform: scale(1.07);
}

/* Bouton utilisateur */
.btn-user {
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.2);
    color: white !important;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
}
.btn-user:hover {
    background: rgba(255,255,255,0.32);
    transform: translateY(-2px);
}

/* Mini avatar */
.avatar-mini {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

/* Dropdown menu smooth */
.dropdown-menu.show {
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Burger clean */
.navbar-toggler {
    filter: invert(1);
    border: none;
}

/* Fix spacing */
body { margin: 0; padding-top: 110px; }

/* Mobile */
@media (max-width: 992px) {
    .rmj-mapa-bubble {
        width: 60px;
        height: 60px;
        top: -10px;
    }
}
