@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Edu+AU+VIC+WA+NT+Pre:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');
/* Resetowanie stylów i podstawowe style dla ciała */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Lato;
}

body {
    
    color: #FFF;
    background-color: #3b3b3b;
}

        /* Nawigacja */
        .navbar {
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            background-color: #333;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar h1 {
            margin: 0;
            font-size: 1.5rem;
        }

        .navbar ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .navbar a {
            color: #FFF;
            text-decoration: none;
            font-size: 1.2rem;
        }

        .burger-menu {
            display: none;
            font-size: 24px;
            color: #FFF;
            background: none;
            border: none;
            cursor: pointer;
        }

        .navbar ul li {
            position: relative; 
        }
        
        .navbar ul li ul {
            display: none; 
            position: absolute; 
            top: 100%; 
            left: 0; 
            background-color: #333; 
            z-index: 1000; 
        }
        
        .navbar ul li:hover ul {
            display: block; 
        }
        
        .navbar ul li ul li {
            width: 200px; 
        }
        
        .navbar ul li ul li a {
            padding: 12px 16px; 
            color: #FFF; 
            text-decoration: none; 
            display: block; 
        }
        
        .navbar ul li ul li a:hover {
            background-color: #444; 
        }
        

        .header-logo-container {
            display: flex;
            align-items: center;
        }
        
        .header-logo {
            width: 50px;
            height: auto;
            margin: 0; /* Usuń wszelkie marginesy wokół logo */
        }
        
        .navbar h1 {
            font-size: 1.5rem;
            margin: 0;
            padding-left: 10px; /* Mała przestrzeń między logo a tekstem */
        }
        
        
        
        
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
        }

/* Zapewnij, że wszystkie elementy używają border-box dla box-sizing */
* {
    box-sizing: border-box;
}

/* Ustawienia domyślne dla całej strony */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Alert o rekrutacji */
.recruitment-alert {
    background-color: #f39c12;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 1.1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideDown 0.5s ease forwards;
}

.recruitment-alert p {
    margin: 0;
    padding-right: 20px;
}

.recruitment-alert a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}

.recruitment-alert a:hover {
    color: #686868;
    text-decoration: none;
}

.close-alert {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 10px;
    font-weight: bold;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Aktualizacja nawigacji, aby nie była zasłonięta przez alert */
.navbar {
    position: fixed;
    top: 42px; /* Wysokość alertu */
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}




        
        /* Responsywność dla urządzeń mobilnych */
        @media (max-width: 768px) {
            /* Nawigacja */
            .navbar {
                flex-direction: column;
                align-items: flex-start;
                padding: 0.5rem 1rem;
            }
        
            .navbar h1 {
                font-size: 1.2rem;
                padding-left: 0;
            }
        
            .navbar ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #333;
                position: static;
            }
        
            .navbar ul {
                display: none; /* Ukryj menu na małych ekranach */
                flex-direction: column;
            }
            
            .navbar ul.show {
                display: flex; /* Pokaż menu, gdy dodana jest klasa 'show' */
            }
            
            .burger-menu {
                display: block;
                align-self: flex-end;
                cursor: pointer;
            }
            
        
            /* Sekcja tytułowa */
            .title-section {
                height: 80vh;
                padding: 0 1rem;
            }
        
            .title-content {
                font-size: 2rem;
                padding: 0;
            }
        
            /* Statystyki */
            .stats-section {
                padding: 60px 10px;
            }
        
            .stats {
                align-items: center;
                gap: 1rem;
                margin-left: auto;
                margin-right: auto;
            }
        
            .stat {
                max-width: 90%;
                margin: 1rem 0;
                padding: 1.5rem;
                flex-direction: column;
                text-align: center;
            }
        
            .stat i {
                font-size: 3rem;
                margin-bottom: 10px;
            }
        
            .description p, .description span {
                font-size: 1.5rem;
            }
        
/* Sekcja galerii */
.gallery-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding: 0 1rem;
}

.album-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    max-width: 1200px;
    margin: 3rem auto;
}

.album-cover {
    flex: 1 1 calc(33.333% - 3rem);
    max-width: calc(33.333% - 3rem);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.album-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* Media queries */
@media (max-width: 900px) {
    .album-cover {
        flex: 1 1 calc(50% - 3rem);
        max-width: calc(50% - 3rem);
    }
}

@media (max-width: 600px) {
    .album-cover {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

        
            /* Sekcja kontaktowa */
            .contact-section {
                padding: 2rem 1rem;
                
            }
        
            .contact-container {
                flex-direction: column;
                gap: 2rem;
            }
        
            .contact-form, .discord-widget {
                width: 100%;
                margin: 0 auto;
                justify-content: center;
                align-items: center;
            }
            
        
            /* Przycisk "Wróć na górę" */
            #topBtn {
                bottom: 15px;
                right: 15px;
                padding: 10px;
                font-size: 16px;
            }
        
            /* Sekcja zarządu */
            .zarzad-section h2 {
                font-size: 2rem;
                margin-top: 40px;
            }
        
            .team-profiles {
                gap: 1.5rem;
            }
        
            .team-member {
                width: 90%;
                padding: 20px;
            }
        
            /* Sekcja zespołu */
            .zespol-section h2 {
                font-size: 2rem;
            }
        
            /* Sekcja "O NAS" */
            .about-section {
                padding: 2rem 1rem;
            }
        
            .about-section h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
        
            .about-section p {
                font-size: 1rem;
            }
        
            /* Sekcja współpracy */
            .collaboration-section {
                padding: 2rem 1rem;
            }
        
            .collaboration-section h2 {
                font-size: 2rem;
            }
        
            .scroll-list {
                animation-duration: 60s; /* Zmniejszona prędkość przewijania na mobilnych */
            }
        
            .scroll-item img {
                width: 100px;
            }
        
            /* Modal */
            .modal-content {
                width: 90%;
                max-width: 500px;
            }
        
            /* Stopka */
            .footer-content {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
        
            .footer-links, .footer-contact, .footer-social {
                text-align: center;
                width: 100%;
            }
        
            .footer-links ul {
                display: inline-block;
                text-align: left;
            }
        
            .footer-social {
                justify-content: center;
            }
        }
        
        /* Responsywność dla telefonów */
@media (max-width: 768px) {

    /* Sekcja tytułowa */
    .title-content {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    /* Sekcja kontaktowa */
    .contact-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: 100%;
        margin: 0 auto; /* Wycentrowanie całej sekcji */
    }

    .contact-form,
    .discord-widget {
        width: 100%;
        margin: 0 auto; 
        justify-content: center; 
        align-items: center;
    }
    
    .discord-widget iframe {
        width: 100%; 
    }
    

    .vertical-line {
        display: none; 
    }

    /* Statystyki */
    .stats {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .stat {
        max-width: 90%;
        margin: 1rem 0;
        text-align: center;
    }

    /* Galeria */
    .album-gallery {
        flex-direction: column;
        gap: 1.5rem;
    }

    .album-cover {
        width: 100%;
    }

    /* Modal */
    .modal-content {
        width: 90%;
    }

    /* Sekcja Zarządu */
    .team-profiles {
        gap: 1.5rem;
    }

    .team-member {
        width: 100%;
    }

    /* Sekcja Zespołu */
    .zespol-section {
        padding: 3rem 1rem;
    }

    /* Stopka */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
        width: 100%;
    }

    /* Sekcja partnerów */
    .scroll-list {
        display: block;
    }

    .scroll-item {
        display: inline-block;
        margin: 0 0.5rem;
    }

    /* Przycisk powrotu na górę */
    #topBtn {
        bottom: 10px;
        right: 10px;
        padding: 10px;
    }
}
        

.title-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.title-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/galeria/ets2_20241109_193618_00.jpg') no-repeat center center;
    background-size: cover;
    animation: changeBackground 20s infinite;
    filter: blur(3px); /* Dodajemy efekt rozmycia */
    z-index: -1; /* Upewniamy się, że pseudo-element jest za tekstem */
}

@keyframes changeBackground {
    0%, 24% {
        background-image: url('../img/galeria/str4.jpg');
    }
    25%, 49% {
        background-image: url('../img/galeria/str5.jpg');
    }
    50%, 74% {
        background-image: url('../img/galeria/str3.png');
    }
    75%, 99% {
        background-image: url('../img/galeria/1.png');
    }
    100% {
        background-image: url('../img/galeria/str4.jpg');
    }
}

.title-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFF;
    font-size: 2.5rem;
    padding: 0 2rem;
    z-index: 2;
}

.title-content p{
    font-size: 1.8rem;
}


/* Sekcja statystyk */
.stats-section {
    padding: 80px 20px; /* Zwiększone odstępy */
    text-align: center;
    background-color: #222; /* Kolor tła dla sekcji */
}

.stats-section h2 {
    font-size: 2.5rem; /* Rozmiar tytułu */
    margin-bottom: 40px; /* Odstęp pod tytułem */
    color: #ff9800; /* Kolor tytułu */
}

.stats {
    display: flex; /* Ustawienie w flexboxie */
    justify-content: space-around; /* Rozmieszczenie statystyk w równych odstępach */

    flex-wrap: wrap; /* Pozwala na zawijanie w przypadku mniejszych ekranów */
    max-width: 1200px; /* Maksymalna szerokość kontenera */
    margin: 0 auto; /* Wyśrodkowanie kontenera */
}

.stat {
    flex: 1; /* Każdy stat jest elastyczny */
    max-width: 200px; /* Maksymalna szerokość pojedynczego stat */
    margin: 0 20px; /* Odstępy pomiędzy statystykami */
    background-color: #626262; /* Tło dla każdego stat */
    border-radius: 10px; /* Zaokrąglone rogi */
    padding: 20px; /* Wewnętrzne odstępy */
    transition: transform 0.3s; /* Efekt powiększenia */
    display: flex; /* Dodanie flexboxa do .stat */
    flex-direction: column; /* Układ elementów w kolumnie */
    justify-content: space-between; /* Rozmieszczenie zawartości na całej wysokości */
}

.stat:hover {
    transform: scale(1.05); /* Powiększenie po najechaniu */
}

.stat i {
    font-size: 60px; /* Rozmiar ikony */
    color: #ff9800; /* Kolor ikony */
    margin-bottom: 15px; /* Odstęp pod ikoną */
}

.description {
    color: #FFF; /* Kolor tekstu w opisie */
}

.description p {
    font-size: 1.2rem; /* Rozmiar tekstu opisu */
    margin: 5px 0; /* Odstępy między liniami */
}

.description span {
    font-size: 2rem; /* Większy rozmiar liczby */
    font-weight: bold; /* Pogrubienie liczby */
}










/* Sekcja kontaktowa */
.contact-section {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FFF;
    background-color: #222; /* Różne tło dla sekcji kontaktowej */
}

.contact-section h2 {
    font-size: 2.5rem; /* Większy tekst nagłówka */
    margin-bottom: 1.5rem; /* Zwiększenie odstępu pod nagłówkiem */
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}


.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 1.5rem; /* Zwiększenie odstępu między polami formularza */
    padding: 0.8rem;
    border-radius: 5px;
    border: none;
    font-size: 1rem; /* Większy rozmiar tekstu w formularzu */
}

.contact-form button {
    padding: 0.8rem;
    background-color: #FFA500;
    color: #FFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.vertical-line {
    width: 1px;
    background-color: #FFF;
    height: 100%;
}








/* Stylizacja tytułu galerii */
.gallery-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

/* Ustawienie sekcji galerii */
.gallery-section {
    margin-top: 10rem; /* większy odstęp nad sekcją galerii */
    text-align: center;
    color: #fff;
    margin-bottom: 10rem;
}

.album-gallery {
    display: flex;
    gap: 3rem; /* większy odstęp między albumami */
    justify-content: center;
    margin-top: 3rem;
}

.album-cover {
    position: relative;
    width: 400px;
    cursor: pointer;
    transition: transform 0.3s;
}

.album-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.album-cover:hover {
    transform: scale(1.05);
}

.album-author {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(51, 51, 51, 0.7);
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.album-cover:hover .album-author {
    opacity: 1;
}


/* Modal dla albumu */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    width: 100%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.arrow {
    position: absolute;
    top: 50%;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transform: translateY(-50%);
    user-select: none;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}



/* Przycisk 'Wróć na górę' */
#topBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    background-color: #FFA500;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
}

@media screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }

    .burger-menu {
        display: block;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
    }
}

/* Ogólne style stopki */
.footer {
    background-color: #171717;
    color: #ccc;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.footer-logo h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.footer-links, .footer-contact, .footer-social {
    text-align: left;
    flex: 1;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.footer-links ul li {
    margin-bottom: 5px;

}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact p {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 8px;
}

.footer-social {
    display: flex; 
    justify-content: column; 
    align-items: center;
}

.footer-social h3 {
    margin-bottom: 10px;
}

.footer-social a {
    color: #ccc;
    margin: 0 10px; 
    font-size: 1.5rem;
    transition: color 0.3s;
}


.footer-social a:hover {
    color: #fff;
}

/* Dolna część stopki */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #999;
}







.regulamin-h2{
    margin-top: 50px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}
.regulamin-content {
    background-color: rgb(55 54 54 / 70%);
    padding: 4em;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 20px;
}

.regulamin-content h2 {
    font-size: 1.5em;
    color: #ff9800;
    margin-top: 1em;
}

.regulamin-content ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

.regulamin-content ol li {
    margin: 0.5em 0;
    color: #ffffff;
}

.regulamin-content ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-top: 0.5em;
}

.regulamin-content ul li {
    color: #c5c4c4;
    margin-bottom: 0.5em;
}












/* Sekcja Zarządu */
.zarzad-section {
    position: relative;
    background-color: #171717;
    color: white;
    padding: 60px 20px;
    text-align: center;
    background-image: url("../img/galeria/1.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    backdrop-filter: blur(5px);

}

.zarzad-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit; /* Użycie dziedziczenia obrazu tła */
    filter: blur(8px); /* Efekt rozmycia */
    opacity: 0.5; /* Półprzezroczystość */
    z-index: -1; /* Przesunięcie tła pod spód sekcji */
    
}




.zarzad-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    margin-top: 80px;
}

.team-profiles {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.team-member {
    background-color: #333;
    border-radius: 8px;
    padding: 30px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
    margin-bottom: 20px; /* Odstęp między kafelkami a dolnym tekstem */
    margin-top: 20px
}

.team-member:hover {
    transform: scale(1.05) !important;
}

.team-member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px; /* Odstęp między zdjęciem a nazwiskiem */
}

.team-member h3 {
    margin: 15px 0 10px; /* Odstęp między nazwiskiem a stanowiskiem */
    font-size: 1.2rem;
}

.team-member p {
    margin: 0 0 10px; /* Odstęp między akapitami w opisie */
    font-size: 1rem;
    color: #ccc;
}


/* Sekcja Zespołu */
.zespol-section {
    background-color: #1c1c1c;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.zespol-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}










/* Sekcja "O NAS" */
.about-section {
    padding: 3rem 1.5rem;
    text-align: center;
    background-color: #333;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ff9800;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #FFF;
    max-width: 800px;
    margin: 0 auto;
}



.collaboration-section {
    padding: 3rem 1.5rem;
    text-align: center;
    background-color: #333;
}

.collaboration-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ff9800;
}

.scroll-container {
    overflow: hidden;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    list-style-type: none;
    
}

.scroll-list {
    display: flex;
    animation: scrollLeft 30s linear infinite;
}

.scroll-item {
    margin: 0 1rem;
    list-style-type: none;
}

.scroll-list img {
    width: 150px;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
    list-style-type: none;
}

.scroll-item:hover img {
    transform: scale(1.1);
}

/* Kluczowe ramki animacji */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.album-gallery {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap; 
    max-width: 1200px; 
    margin: 3rem auto; 
}

.album-cover {
    flex: 1 1 calc(33.333% - 2rem); 
    max-width: calc(33.333% - 2rem); 
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.album-cover img {
    width: 100%;
    height: auto;
    display: block;
}





