/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */


/* MENU STICKY */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
    background: transparent;
}

/* MENU NA HOMEPAGE */
body#index #header {
    background: transparent;
    box-shadow: none;
}

/* MENU PO SCROLL */
#header.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* KOLOR LINKÓW NA BANERZE */
body#index #header .header-nav a,
body#index #header .top-menu a,
body#index #header .menu a {
    color: #fff !important;
}

/* KOLOR LINKÓW PO SCROLL */
#header.scrolled .header-nav a,
#header.scrolled .top-menu a,
#header.scrolled .menu a {
    color: #222 !important;
}

/* ABY SLIDER NIE CHOWAŁ SIĘ POD MENU */
body#index #wrapper {
    margin-top: 0;
}

/* POZOSTAŁE STRONY */
body:not(#index) #wrapper {
    margin-top: 120px;
}
