/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Ogólne ustawienia */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-image: url(bg.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* Nagłówek */
header {
    background-color: #2f3e46; /* Ciemnoszary */
    color: #ffffff; /* Biały tekst */
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
    font-style: italic;
}

/* Nawigacja */
nav {
    display: flex;
    justify-content: center;
    background-color: #2f3e46; /* Ciemnoszary */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav a {
    color: #ffffff; /* Biały tekst */
    text-decoration: none;
    padding: 15px 20px;
    font-size: 1em;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #007f7f; /* Turkusowy hover */
    color: #ffffff;
}

/* Sekcja ogólna */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff; /* Białe tło sekcji */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Nagłówki sekcji */
h2 {
    font-size: 2em;
    color: #007f7f; /* Turkusowy nagłówek */
    margin-bottom: 20px;
    text-align: center;
}

/* Lista linków */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

ul li {
    margin: 0;
    padding: 0;
}

ul li a {
    text-decoration: none;
    color: #007f7f; /* Turkusowy */
    font-weight: bold;
    font-size: 1.2em;
    border: 2px solid #007f7f; /* Turkusowy border */
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

ul li a:hover {
    background-color: #007f7f; /* Turkusowy wypełniony */
    color: #ffffff;
}

/* Produkty */
.product {
    background-color: #ffffff; /* Białe tło kart produktów */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-bottom: 1px solid #f0f0f0;
}

.product h3 {
    font-size: 1.5em;
    color: #007f7f; /* Turkusowy tytuł */
    margin: 15px 0 10px;
}

.product p {
    font-size: 1.2em;
    color: #2a9d8f; /* Turkusowy opis */
    margin: 10px 0 15px;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Siatka produktów */
.container .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Przyciski */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

button {
    background-color: #007f7f; /* Turkusowy */
    color: #ffffff; /* Biały tekst */
    border: none;
    padding: 15px 20px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #00a3a3; /* Jaśniejszy turkusowy */
    transform: translateY(-2px);
}

button:active {
    transform: translateY(1px);
    background-color: #005f5f; /* Ciemniejszy turkusowy */
}

/* Sekcja "O nas" */
#onas {
    background-color: #f0f0f0; /* Jasnoszary */
    color: #333; /* Ciemny tekst */
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#onas h3 {
    color: #007f7f; /* Turkusowy akcent */
}

#budzet {
    background-color: #f0f0f0; /* Jasnoszary */
    color: #333; /* Ciemny tekst */
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#budzet h3 {
    color: #007f7f; /* Turkusowy akcent */
}

/* Sekcja "Kontakt" */
#kontakt {
    background-color: #f0f0f0; /* Jasnoszary */
    color: #333; /* Ciemny tekst */
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#kontakt ul {
    list-style-type: none;
    padding: 0;
}

#kontakt ul li {
    background-color: #ffffff; /* Białe tło */
    color: #333;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Stopka */
footer {
    background-color: #2f3e46; /* Ciemnoszary */
    color: #ffffff; /* Jasny tekst */
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    font-size: 0.9em;
}

/* Responsywność */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    nav a {
        font-size: 0.9em;
        padding: 10px;
    }

    ul li a {
        font-size: 1em;
    }

    .product h3 {
        font-size: 1.3em;
    }

    .product p {
        font-size: 1em;
    }
}
img {
  width: 200px;
  height: 200px;
}