@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    color: white;
    font-family: "Poppins", sans-serif;
}

h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: #cda000;
    margin: 10px auto;
}


/* Początkowy styl nawigacji (duża wersja) */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgb(0, 0, 0);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

/* Po zmniejszeniu */
.navbar.shrink {
    padding: 10px 50px;
    background: rgba(0, 0, 0, 0.8);
}

/* Zmniejszone logo */
.navbar.shrink .logo {
    font-size: 20px;
}

/* Styl nawigacji */
.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: font-size 0.3s ease;
}

/* Zmniejszony tekst w menu */
.navbar.shrink ul li a {
    font-size: 16px;
}

/* Styl logo w nawigacji */
.logo {
    height: 60px;
    /* Dopasuj wysokość */
    width: auto;
}

/* Po przewinięciu zmniejsza logo */
.navbar.shrink .logo {
    height: 35px;
    /* Zmniejszone logo */
    transition: height 0.3s ease;
    /* Animacja przy przewijaniu */
}

.btn-strong {
    background-color: #cda000;
    border: none;
}

.btn-strong:hover {
    background-color: #a88b00;
}

section {
    padding-bottom: 2%;
}

.container h1 {
        margin-top: 10%; /* Dopasuj wartość do wyglądu strony */
}

.split-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 10%;
}

.split-section img {
    width: 50%;
    border-radius: 10px;
}

.split-section .text {
    width: 50%;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    font-size: 22px;
    color: white;
    transition: color 0.3s ease-in-out;
}

.social-icon:hover {
    color: #f8d210; /* Zmiana koloru po najechaniu */
}

/* Przycisk wysyłania */
.btn-primary {
    background-color: #cda000;
    border: none;
    padding: 10px 15px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #cda000;
    box-shadow: 0 0 10px #cda000;
}

.btn-primary:active {
    background-color: #cda000;
}

#article.container {
    max-width: 800px;
}

.content {
    background: none !important;
    border: none !important;
    padding: 20px 0;
    font-size: 18px;
    line-height: 1.6;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

table span {
    color: #fff !important;
    font-family: "Poppins", sans-serif !important;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
}

th {
    background-color: #333;
    color: white;
    text-transform: uppercase;
}

tr:nth-child(even) {
    background-color: #434343;
}

/* Responsywność */
@media (max-width: 600px) {
    table {
        font-size: 14px;
    }
    th, td {
        padding: 8px;
    }
}


@media (max-width: 768px) {
    .navbar.shrink {
        background: rgb(0, 0, 0)
    }
}
