:root {
    --text: #fffaf1;
    --accent: #f9cf7f;
    --accent-hover2: #ba8d47;
    --accent-hover: #f9cf7f;
    --accent-blue: #167fb7;
    --bg: #022406;
    --bg-mid: #011704;
    --bg-dark: #010e03;
    --muted: #bfb6ad;
    --gold-light: #f9cf7f;
    --gold-mid: #ba8d47;
    --gold-dark: #915b05;
    --bs-body-font-size: clamp(1rem, 3vw, 1.25rem);
    --hero-z-index: 900;
    --logo-bar-z-index: 1000;
    --logo-z-index: 1050;
    --menu-z-index: 2000;
    --hamburger-z-index: 3000;
}

@media (max-width: 576px) { html { font-size: 14px; } }
@media (min-width: 1200px) { html { font-size: 18px; } }

.parisienne-regular {
    font-family: "Parisienne", cursive;
    font-weight: 400;
    font-style: normal;
}

.funnel-sans-300 {
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.funnel-sans-500 {
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.funnel-sans-800 {
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-blue);
}

.bg {
    background-color: var(--bg);
}
.bb {
    border-bottom: 1px var(--gold-mid) solid;
}

h1 {
    font-size: 2rem;
    line-height: 2.2rem;
    margin: 2rem 0 1rem 0;
    color: var(--gold-mid);
}

h2 {
    color: var(--gold-mid);
    font-size: 1.6rem;
    line-height: 2rem;
    margin-top: 2rem;
}

ul {
    color: var(--gold-mid);
}

header,
.main-container,
footer {
    background-color: var(--bg);
}

.main-container {
    padding-bottom:2rem;
}

.gold-light {
    color: var(--gold-light);
}

.gold-middle {
    color: var(--gold-mid);
}

.gold-dark {
    color: var(--gold-dark);
}

.bg-gold-light {
    background-color: var(--gold-light);
}

.bg-gold-middle {
    background-color: var(--gold-mid);
}

.bg-gold-dark {
    background-color: var(--gold-dark);
}

.bg-mid {
    background-color: var(--bg-mid);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.border-gold-light {
    border-color: var(--gold-light);
}

.border-gold-middle {
    border-color: var(--gold-mid);
}

.border-gold-dark {
    border-color: var(--gold-dark);
}

.alc {
    text-align: center !important;
}

.alr {
    text-align: right !important;
}

.hidden {
    display: none !important;
}

.no-wrap {
    text-wrap: nowrap;
}

/* WCAG 2.1: skip link – widoczny tylko przy focusie (nawigacja klawiaturą) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10001;
    padding: 0.75rem 1.25rem;
    background: var(--gold-mid);
    color: var(--bg-dark);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}
.skip-link:focus,
.skip-link:focus-visible {
    left: 0;
    outline: 3px solid var(--gold-light);
    outline-offset: 2px;
}

/* WCAG 2.1: widoczny focus dla użytkowników klawiatury */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
}
