/* 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: #f9f9f9;
    color: #444; /* Szary kolor tekstu */
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 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 dla linków */
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff5722; /* Pomarańczowy kolor na 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 dla linków */
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Sekcja kontakt */
#kontakt {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#kontakt h2 {
    font-size: 2em;
    color: #444; /* Szary kolor */
    text-align: center;
    margin-bottom: 10px;
}

#kontakt p {
    text-align: center;
    margin-bottom: 20px;
    color: #666; /* Jaśniejszy szary */
}

/* Formularz kontaktowy */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #444; /* Szary kolor dla etykiet */
}

.form-group input,
.form-group textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff5722; /* Pomarańczowy podczas focus */
}

.submit-btn {
    background-color: #ff5722; /* Pomarańczowy kolor przycisku */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #e64a19; /* Ciemniejszy odcień pomarańczowego */
}

/* 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 */
    }
}

	