/* Tło strony */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../images/tlo.jpg'); /* Ścieżka do zdjęcia tła */
    background-size: cover; /* Dopasowanie tła do ekranu */
    background-position: center center; /* Ustawienie tła na środek */
    background-attachment: fixed; /* Utrzymanie tła w tym samym miejscu podczas przewijania */
    color: #000;
}

/* Nagłówek strony */
header {
    background-color: rgba(255, 255, 255, 0.8); /* Białe tło z przezroczystością */
    text-align: center;
    padding: 20px;
}

header .logo img {
    width: 1000px;
    height: auto;
}

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

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

/* Sekcja główna */
#main, #about, #gallery, #contact {
    background-color: rgba(255, 255, 255, 0.7); /* Przezroczyste tło dla sekcji */
    color: #000;
    padding: 50px 20px;
    text-align: center;
}

/* Galeria */
.gallery-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.gallery-item {
    width: 30%;
    margin: 10px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Formularz kontaktowy */
form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

form label, form input, form textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
}

form button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

/* Stopka */
footer {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    text-align: center;
    padding: 20px 0;
}
