/* ==========================================================================
   Menu główne – logo, navbar, ikona hamburgera (bez megamenu)
   ========================================================================== */

.custom-position-logo {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

/* Domyślnie: twoja ikonka */
.navbar-toggler-icon {
    background-image: url('../../images/header/menu.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 1.8rem;
    height: 1.8rem;
    transition: filter 0.3s ease;
}

.reverseColorsOnActive {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    aspect-ratio: 100/77;
    display: flex;
    justify-content: center;
    align-items: center;
}

.relative {
    position: relative;
}


/* Aktywne menu – zmiana koloru tła i odwrócenie ikonki */
.reverseColorsOnActive:has(.navbar-toggler[aria-expanded="true"]) {
    background-color: black;
}

.reverseColorsOnActive:has(.navbar-toggler[aria-expanded="true"]) .navbar-toggler-icon {
    filter: invert(100%);
}

#mobileMenu .nav-link {
    border-top: 1px solid #eee;
}

#mobileMenu .no-border {
    border-top: 0 !important;
}

.nav-link {
    color: #1d1d1d;
}

.nav-link:hover {
    color: #1d1d1d;
}

.full-bleed {
    margin-inline: calc(-1 * var(--bs-gutter-x, 1rem));
    padding-inline: var(--bs-gutter-x, 1rem);
}