/* Resetowanie domyślnych styli */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Styl dla całej strony */
body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Nagłówek */
header {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Stylizacja logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo img {
    width: 50px;
    height: 50px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
}

/* Usunięcie podkreślenia dla linku */
.logo:hover {
    text-decoration: none;
    color: white;
}


.galeria {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
}

.galeria img {
    width: 30%;
    max-width: 300px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.galeria img:hover {
    transform: scale(1.05);
}

/* Responsywność: zmniejszenie szerokości zdjęć na mniejszych ekranach */
@media (max-width: 768px) {
    .galeria img {
        width: 45%; /* Na tabletach większe zdjęcia */
    }
}

@media (max-width: 480px) {
    .galeria img {
        width: 90%; /* Na telefonach zdjęcia pełnej szerokości */
    }
}



/* Nawigacja */
nav ul {
    list-style-type: none;
    text-align: center;
    background-color: #495057;
    padding: 10px;
}

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

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

/* Sekcje */
section {
    padding: 40px 20px;
    text-align: center;
}

/* Stopka */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

.kontakt {
    text-align: center;
    padding: 40px 20px;
}

.kontakt form {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.kontakt label {
    display: block;
    text-align: left;
    margin-top: 10px;
    font-weight: bold;
}

.kontakt input,
.kontakt textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.kontakt textarea {
    height: 120px;
    resize: vertical;
}

.kontakt button {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background-color: #343a40;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.kontakt button:hover {
    background-color: #495057;
}

.oferta {
    text-align: center;
    padding: 40px 20px;
}

.oferta-karty {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.karta {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.karta img {
    width: 100%;
    border-radius: 5px;
}

.karta h3 {
    margin: 15px 0 10px;
    color: #343a40;
}

.karta p {
    font-size: 14px;
    color: #555;
}

.karta:hover {
    transform: scale(1.05);
}

/* Responsywność */
@media (max-width: 768px) {
    .oferta-karty {
        flex-direction: column;
        align-items: center;
    }
}
