/* RESET I PODSTAWY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
    color: #eee;
    line-height: 1.6;
    position: relative;
}

/* FAKTURA TŁA */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
}


section h2 {
    font-size: 36px;          /* większe i czytelne */
    text-align: center;       /* na środku */
    margin-bottom: 25px;
    letter-spacing: 2px;      /* lekko „rapowy” luz */
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
}

/* czerwona linia pod tytułem */
section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #e10600;
    margin: 12px auto 0;
}

/* HEADER */
header {
    background: #000;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Impact', Arial, sans-serif;
    font-size: 32px;
    text-decoration: none;
}

.logo-white {
    color: #ffffff;
}

.logo-red {
    color: #e10600;
}

.logo span {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

nav a:hover {
    color: #e10600;
}

/* MAIN */
main {
    padding: 40px 20px;
}

/* SEKCJA HOME */
.videos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.video-box {
    flex: 1;
    min-width: 250px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* SOCIALE */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1c1c1c;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.2s, background 0.2s;
}

#sociale,
#wsparcie {
    margin-top: 20px;
}
.home-desc {
    max-width: 100%;
    margin: 30px auto 50px;
    font-size: 18px;
    text-align: center;
    line-height: 1.8;
    color: #ddd;

    background: #1c1c1c;          /* kolor stopki */
    padding: 25px 35px;
    border-radius: 12px;
}


.home-desc strong {
    color: #e10600;
}


.social-box:hover {
    background: #2a2a2a;
    transform: scale(1.03);
}

.social-box img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

/* PRZYCISKI */
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: #e10600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.2s, transform 0.2s;
}

.btn:hover {
    background: #ff3a3a;
    transform: scale(1.05);
}

/* WSPARCIE */
.support-box {
    background: #1c1c1c;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

.support-box img {
    max-width: 120px;
    margin: 10px;
}

/* STOPKA */
footer {
    background: #000;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    .videos {
        flex-direction: column;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }
}
