
body {
    background-color: #f0f0f0;
    color: black;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.banner {
    position: relative;
    text-align: left;
    color: white;
}

.banner img {
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 4em;
    font-weight: bold;
}
.top-right-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.button-link {
    background-color: #d32f2f; /* Kolor tła */
    color: #fff; /* Kolor tekstu */
    padding: 10px 20px; /* Odstępy wewnątrz przycisku */
    text-decoration: none; /* Usunięcie podkreślenia */
    border-radius: 5px; /* Zaokrąglone rogi */
    font-size: 25px; /* Rozmiar czcionki */
    transition: background-color 0.3s ease; /* Animacja zmiany koloru */
}

.button-link:hover {
    background-color: #b71c1c; /* Kolor tła po najechaniu */
}
.content {
    padding: 0;
    width: 100%;
    margin: 0;
}

.section {
padding: 0px;
}

.one-section {
margin: 5px;
    background-color: #e0e0e0; /* Light gray background */
}

.three-column-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.column {
    background-color: #e0e0e0; /* Light gray background */
margin: 5px;
    width: 33.3%;
    box-sizing: border-box; /* To ensure padding doesn't affect width */
}

h2 {
    text-align: left;
    font-size: 1.5em;
    margin-top: 0;
margin: 5px;
}

p {
    text-align: justify;
    font-size: 1em;
    margin: 20px 10px 20px 10px; /* Adds spacing below paragraphs */
}
.gallery-container {
    overflow: hidden;
    width: 100%;
}

/* Styl dla galerii */
.gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto; /* Przewijanie w poziomie */
    scroll-snap-type: x mandatory; /* Przyciąganie do zdjęć */
    padding: 10px;
}

.gallery img {
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    scroll-snap-align: center; /* Środek obrazu na środku widoku */
width: calc(33.33% - 10px); /* 3 obrazy obok siebie z marginesem */
}
.contact-map-container {
    background-color: #e0e0e0; /* Light gray background */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.contact-info {
    margin-left: 20px;
    background-color: #e0e0e0;
    border-radius: 5px;
    max-width: 400px;
}

.elementor-widget-google_maps .elementor-widget-container {
    margin-top: 20px;
    overflow: hidden;
}

.elementor-widget-google_maps iframe {
    height: 300px;
    width: 100%;
    border-radius: 5px;
}

.wrappingImage {
    position: relative;
    height: 300px;
    width: 800px;
    background-color: #e0e0e0; /* Light gray background */
    margin: auto; /* Center the wrapping image */
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for better visual */
}

.overlappingImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures images are contained within their frames */
}

table {
    background-color: white; /* White background for the table */
    width: 80%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for better visual */
    margin: 20px auto;
}

td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

td img {
    width: 100px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s; /* Animation for hover effect */
}

td img:hover {
    transform: scale(1.1); /* Slightly enlarge image on hover */
}

h2 {
    margin-bottom: 10px;
}

h2, p {
    color: #333; /* Darker text color for better readability */
}
@media (max-width: 768px) {
    .banner-text {
        font-size: 2em; /* O połowę mniejszy rozmiar tekstu */
    top: 2px;
    }

    .top-right-button {
        top: 90px; /* Ustawienie przycisku 50px od góry */
        right: 10px; /* Pozostawienie po prawej stronie */
    }

    .button-link {
        font-size: 16px; /* Zmniejszenie rozmiaru czcionki przycisku */
        padding: 5px 10px; /* Zmniejszenie odstępów wewnątrz przycisku */
    }
     .one-section {
	margin: 0px;
    }
    .three-column-section {
        flex-direction: column; /* Zamiana na wiersze */
    }

    .column {
        width: 100%; /* Pełna szerokość dla małych ekranów */
        margin: 10px 0; /* Mniejsze marginesy między sekcjami */
    }
    .wrappingImage {
        width: 100%; /* Pełna szerokość */
        height: 200px; /* Dostosowanie wysokości do zawartości lub proporcji */
        margin: 10px 0; /* Zmniejszenie marginesu */
        border-radius: 0; /* Możesz usunąć zaokrąglenie dla lepszego wyglądu na małych ekranach */
    }
    .gallery img {
        width: 100%; /* Pojedynczy obraz na małym ekranie */
    }
}
