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

html, body {
    min-height: 100%;
}

/* ================= FONTS ================= */
@font-face {
    font-family: "Orbitron";
    src: url("/fonts/Orbitron-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Orbitron";
    src: url("/fonts/Orbitron-Bold.ttf") format("truetype");
    font-weight: 700;
}

/* ================= BODY ================= */
body {
    font-family: "Orbitron", Arial, sans-serif;
    color: #e8f0ff;
    line-height: 1.8;

    background:
        linear-gradient(
            rgba(15, 30, 55, 0.45),
            rgba(15, 30, 55, 0.65)
        ),
        url("img/kamp.webp") center / cover no-repeat fixed;
}

/* ================= TOP BAR ================= */
/*
.top-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,#2b5f9a,#1c365a);
    border-bottom: 1px solid rgba(140, 190, 255, 0.35);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}
*/
/* ================= FLOATING HOME ================= */
.home-float {
    position: fixed;
    top: 18px;
    left: 24px;
    z-index: 200;
}

.home-float svg {
    width: 26px;
    height: 26px;
    fill: #b7d3ff;
    transition: transform .2s ease, fill .2s ease;
}

.home-float:hover svg {
    fill: #ffffff;
    transform: scale(1.15);
}
.title-box {
    text-align: center;
    margin-top: 10px;
}

.title-box h1 {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
    color: #51e3fd;
    text-shadow: 0 0 14px rgba(120, 180, 255, 0.45);
}

.title-box span {
    display: block;
    margin-top: 0px;
    font-size: 1.15rem;
    color: #d0e2ff;
}

/* ================= HOME ================= */
.home-btn {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.home-btn svg {
    width: 26px;
    height: 26px;
    fill: #b7d3ff;
    transition: transform .2s ease, fill .2s ease;
}

.home-btn:hover svg {
    fill: #ffffff;
    transform: scale(1.15);
}

/* ================= HEADER TEXT ================= */
.header-content {
    text-align: center;
}

.header-content h1 {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-shadow: 0 0 14px rgba(120, 180, 255, 0.45);
}

.header-content p {
    margin-top: 6px;
    font-size: 1.15rem;
    color: #d0e2ff;
}

/* ================= MAIN COLUMN ================= */
.content {
    max-width: 980px;
    margin: 70px auto 90px;
    padding: 0 20px;
}

/* ================= PANELS ================= */
.panel {
    background: rgba(18, 28, 46, 0.85);
    border: 1px solid rgba(130, 180, 255, 0.25);
    padding: 28px 32px;
    margin-bottom: 36px;

    box-shadow:
        0 0 0 1px rgba(130, 180, 255, 0.08),
        0 14px 32px rgba(0, 0, 0, 0.75);
}

/* ================= TEXT ================= */
.panel p {
    font-size: 1.18rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #eef4ff;
    margin-bottom: 20px;
}

/* ================= HEADERS ================= */
.panel h2 {
    font-size: 1.45rem;
    margin-bottom: 16px;
    color: #51e3fd;
    letter-spacing: 1px;
}

/* ================= LIST ================= */
.panel ul {
    list-style: square;
    padding-left: 20px;
}

.panel ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* ================= LINKS ================= */
.panel.links {
    display: flex;
    flex-direction: row !important;   /* 🔴 wymuszenie */
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 22px 28px;
}

.panel.links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap; /* 🔥 kluczowe */
    font-size: 1.1rem;
    font-weight: 600;
    color: #d2e4ff;
    text-decoration: none;
}

.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.icon.discord { color: #7289da; }
.icon.srs     { color: #cccc63; }
.icon.phone   { color: #ff4b4b; }
.icon.logistics { color: #9ad1b3; }

.icon_color_1 {color:#51e3fd}
.icon_color_1:hover {color:#7289da}

.icon_color_2 {color:#51e3fd}
.icon_color_2:hover {color:#cccc63}

.icon_color_3 {color:#51e3fd}
.icon_color_3:hover {color:#ff6868}

.icon_color_4 {color:#51e3fd}
.icon_color_4:hover {color:#9ad1b3}

/* ================= FOOTER ================= */
.site-footer {
    width: 100%;
    margin-top: 80px;

    background: linear-gradient(
        to bottom,
        rgba(15, 25, 45, 0.55),
        rgba(15, 25, 45, 0.0)
    );
    border-top: 1px solid rgba(120, 170, 255, 0.18);
}
.footer-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 20px 24px;

    text-align: left;
    font-size: 0.85rem;
    color: #b6c9e6;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 1.6rem;
    }
    .header-content p {
        font-size: 1rem;
    }
    .panel {
        padding: 22px;
    }
    .panel.links {
        flex-direction: column;
        gap: 16px;
    }
}
