/* Import czcionki z Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Resetowanie stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

body {
    background-color: #f9f4f9; /* Jasny różowy */
    color: #444; /* Ciemniejszy szary tekst */
    line-height: 1.6;
    overflow-x: hidden;
    text-align: center; /* Wyśrodkowanie tekstu w całym dokumencie */
}

/* --- Nawigacja --- */
header {
    background-color: #fff;
    padding: 10px 0px;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: center; /* Wyśrodkowanie w poziomie */
    align-items: center; /* Wyśrodkowanie w pionie */
    width: 100%;
    flex-wrap: wrap; /* Dla responsywności */
}

/* Logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}

.logo img {
    max-height: 60px;
    width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease; /* Płynny efekt hover */
}

.logo img:hover {
    transform: scale(1.1); /* Powiększenie logo przy najechaniu */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #444; /* Szary kolor na linki */
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff5722; /* Pomarańczowy podczas hover */
}

/* Menu hamburgerowe */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #444; /* Ciemniejszy szary */
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    border-top: 1px solid #ddd;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: #444; /* Szary kolor na linki */
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #ff5722; /* Pomarańczowy podczas hover */
}

/* Sekcja Cennik */
.pricing {
    padding: 20px;
    text-align: center; /* Wyśrodkowanie tekstu */
}

.pricing h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #444;
}

.pricing-table {
    overflow-x: auto;
    margin: 0 auto; /* Wyśrodkowanie tabeli */
    max-width: 100%; /* Ustawienie 100% szerokości */
    width: 1100px; /* Zwiększenie szerokości tabeli */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Cień wokół tabeli */
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0px;
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.pricing-table th {
    background-color: #f4f4f9; /* Jasne tło nagłówków */
    font-weight: 600;
}

.pricing-table td {
    font-size: 1em;
    color: #555;
}

/* Media Queries dla urządzeń mobilnych */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .pricing h2 {
        font-size: 1.5em;
    }

    .pricing-table table {
        font-size: 0.9em;
    }
}

/* Responsywność */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Ukryj klasyczne menu na urządzeniach mobilnych */
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hamburger {
        display: flex; /* Pokaż hamburgera */
    }

    .mobile-menu {
        display: none; /* Menu mobilne ukryte */
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mobile-menu.active {
        display: flex; /* Menu mobilne pokazane, gdy aktywne */
    }
}


