/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Body */
body {
    font-family: 'Russo One', 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-page);
    background: var(--bg-page); 
    color: var(--text-primary);
    line-height: 1.7;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

/* Typography */
h1, h2, h3 {
    background: var(--text-primary);
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    background-clip: text;
    margin-bottom: 25px;
    font-weight: 800;
}

h1 { font-size: 42px; letter-spacing: -1px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }

a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

/* Kolor linków zależny od motywu */
a,
.nav-link {
    color: var(--link-color, var(--accent-secondary, #4990c6));
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Hover linków – w pełni „tematyczny” */
a:hover,
.nav-link:hover {
    color: var(--link-hover, var(--accent-secondary, #7bb5ff));
}




