/* ===================== MENU ===================== */

#menu-main-menue {
    position: relative;
    display: flex;
    padding: 0;
    margin: 0;
}

#menu-main-menue li {
    flex: 1;
    list-style: none;
}


#menu-main-menue li a::before {
    content: "\ea50"; 
    font-family: "boxicons";
    margin-right: 8px;
    display: inline-block;
    font-weight: normal;
}

/* ===================== LINK DUSZEK  ===================== */

#menu-main-menue li a::before {
    content: "\ea50";
    font-family: "boxicons";
    margin-right: 8px;
    display: inline-block;

    opacity: 0;
}

#menu-main-menue li a.ghost::before {
    opacity: 0.5;
    transition: opacity 3.5s ease;
}

#menu-main-menue li a:not(.ghost)::before {
    opacity: 0;
    transition: opacity 1.5s ease;
}


/* ===================== LINK ===================== */


.icons-menue {
    color: #007FFF !important;
}

a.nav-link.menue_transition_shade_effect.menue_underline_effect {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    position: relative;
    text-decoration: none;

    color: #0b0f19;
    font-weight: 400;

    overflow: hidden;

    transition: color 0.2s ease, font-weight 0.2s ease;

    /* Better font rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================== UNDERLINE ===================== */

.menue_underline_effect::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(to right, #ccc, #0b0f19, #ccc);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.6s ease;
}

.menue_underline_effect:hover::after {
    transform: scaleX(1);
}

/* ===================== BACKGROUND EFFECT ===================== */

a.nav-link.menue_transition_shade_effect.menue_underline_effect::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        to bottom,
        hsla(223, 39%, 7%, 0.05) 30%,
        hsla(223, 39%, 7%, 0.20) 60%,
        hsla(223, 39%, 7%, 0.20) 100%
    );

    opacity: 0;
    transition: opacity 1.6s ease;

    z-index: 0;
}

/* ===================== HOVER ===================== */

a.nav-link.menue_transition_shade_effect.menue_underline_effect:hover {
    color: #000;         /* darker = looks bolder */
    font-weight: 600;   /* stronger difference */
}

a.nav-link.menue_transition_shade_effect.menue_underline_effect:hover::before {
    opacity: 1;
}

/* ===================== TEXT LAYER FIX ===================== */

a.nav-link.menue_transition_shade_effect.menue_underline_effect span,
a.nav-link.menue_transition_shade_effect.menue_underline_effect {
    position: relative;
    z-index: 1;
}

/* ===================== XXXXXXXXXXXXX ===================== */
/* ===================== XXXXXXXXXXXXX ===================== */

.banner-heading {
    color: #0b0f19 ;
    font-weight: 500;
}
    


/* ===================== Body separator  style ===================== */

.bgseparator{
    background-color: #007FFF !important;

    --space: 1em;

    background-image: linear-gradient(
        to bottom,
        transparent 0,
        transparent var(--space),
        #fff var(--space),
        #fff calc(var(--space) + 1px),
        transparent calc(var(--space) + 1px),
        transparent calc(100% - var(--space)),
        #fff calc(100% - var(--space) - 1px),
        #fff calc(100% - var(--space)),
        transparent calc(100% - var(--space))
    );

    background-repeat: no-repeat;
    background-size: 100% 100%;

}

.bgsecondary{
    background-color: #007FFF ;
}
.bgprimary{
    background-color: #0861C5 ;
}

body{
    color: #0b0f19;
}
/* ===================== XXXXXXXXXXXXX ===================== */
/* ===================== XXXXXXXXXXXXX ===================== */

/* ===================== Footer nav ===================== */

.footer-menu li a {
    color: white;
}

.footer-item a {
    color: white;
    text-decoration: none;
    font-weight: 400;
}

/* ===================== MAIN MENU ICON ===================== */

.menu-offset {
    padding-left: 35%;
    text-align: left;
}

@media (max-width: 768px) {
    .menu-offset {
        padding-left: 0;
        text-align: center;
    }
}


/* ===================== UNDER CONSTRUCTION ===================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* overlay */
.construction-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6); /* półprzezroczyste tło */
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* box */
.construction-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
    max-width: 500px;
}

/* icon */
.warning {
    font-size: 60px;
    color: #ffcc00;
    margin-bottom: 15px;
}

/* text */
h1 {
    margin: 0 0 10px;
}

p {
    margin: 0;
    opacity: 0.9;
}

/* ===================== XXXXXXXXXXXXX ===================== */

/* ===================== PRIVACY PHONE ===================== */
:root {
    --bg: #0b0f17;
    --panel: #121a2a;
    --card: #162033;
    --text: #e6edf3;
    --muted: #9fb0c3;
    --accent: #4da3ff;
    --border: rgba(255,255,255,0.08);
}

.secure-wrapper {
    color: var(--text);
}

/* Section titles */
.section-title {
    margin: 40px 0 20px;
    font-size: 1.5rem;
    border-left: 4px solid var(--accent);
    padding-left: 10px;
}

/* Grid layout */
.secure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

/* Card */
.secure-card {
    background: linear-gradient(180deg, var(--card), var(--panel));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.secure-card:hover {
    transform: translateY(-4px);
    border-color: rgba(77,163,255,0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.secure-card h3 {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.secure-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.secure-card ul {
    padding-left: 18px;
    color: var(--muted);
}

.secure-summary {
    margin-top: 20px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(18, 26, 42, 0.6);
    color: var(--muted);
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 15px;
}