



#o_nas {
    background-color: #fff;
	align-items: flex-start;
    position: relative;
}

#o_nas .container {
	width: 100%;
}

#o_nas .text p{
	margin-top: 15px;
}

.o_nas-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; 
}

.image-container {
    flex: 1 1 45%;
    max-width: 45%;
    padding-right: 20px;
}

.image-container img {
    width: 100%; 
    height: auto; 
}

.text-container {
    flex: 1 1 55%; 
    max-width: 55%;
}

.text-container .quote-bar {
    margin-bottom: 20px;
}

.text-container .text {
    font-size: 16px;
    line-height: 1.6;
}

.quote-bar {
    width: 100%;
	border-radius: 15px 0 15px 15px;
    margin: 0 0 20px 0;
    background-color: #ddd; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    display: flex;
    justify-content: center;
    align-items: center; 
    padding: 20px;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 1.2rem; 
    font-weight: bold; 
    color: #333030;
    text-align: left;
    line-height: 1.2;
    margin: 0;
}

#oferta {
	background-color: #f8f8f8;
}

.oferta-container {
    display: flex; 
    justify-content: space-between;
    gap: 20px; 
    flex-wrap: wrap; 
}

.oferta-tile {
    flex: 1;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.oferta-tile:hover {
    transform: translateY(-10px); 
}

.oferta-tile i{
	font-size: 2.5em;
	color: #DD0E1C;
}
.oferta-tile h3 {
    margin-bottom: 10px; 
    font-size: 1.2em;
    color: #333; 
}

.oferta-tile p {
    font-size: 16px;
    color: #666; 
}

.oferta-tile img {
    width: 15%; 
    height: auto;
    border-radius: 8px 8px 0 0;
    margin-bottom: 15px; 
}

.oferta-content {
	width: 100%;
    margin-top: 20px;
	display: block;
}

.oferta-content p {
	margin-top: 15px;
}

#oferta .container h1{
	display: block;
	text-align: center;
	font-size: 2rem;
	color: #DD0E1C;
	padding: 10px;
	background-color: #f4f4f4;
	margin-bottom: 20px;
}

#kontakt {
    background-color: #f4f4f4;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kontakt-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.kontakt-left {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px 0 0 15px;
}

.kontakt-left h2, .kontakt-left h3 {
    color: #DD0E1C;
    margin-bottom: 15px;
}

.kontakt-left p {
    margin-bottom: 10px;
}

.kontakt-left form {
    display: flex;
    flex-direction: column;
}

.kontakt-left label {
    margin-top: 10px;
}

.kontakt-left input, .kontakt-left textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.kontakt-left button {
    background-color: #DD0E1C;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.kontakt-left button:hover {
    background-color: #b80917;
}

.kontakt-right {
    position: relative;
}

.privacy-policy-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.privacy-policy-container input[type="checkbox"] {
	flex: 0 0 5%;
    margin-right: 5px;
	margin-top: 25px;
	align-self: center;
}

.privacy-policy-container label {
    font-size: 14px;
	flex: 1;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 0 0 15px 0;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

nav.menu a.active {
    position: relative;
    color: #333030;  
}

nav.menu a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #DD0E1C; 
    bottom: -5px;
    left: 0;
}

.menu .shop-button {
    background-color: #DD0E1C; 
    color: white; 
    padding: 6px 6px;
    text-decoration: none; 
    border-radius: 5px 0 5px 5px; 
    transition: background-color 0.3s; 
}

.menu .shop-button:hover {
    background-color: darkred;
	color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333030;
    margin: 2px;
    transition: 0.3s;
}

footer {
    background-color: #333; 
    color: #fff;
    padding: 20px 0; 
    position: relative;
    bottom: 0;
    width: 100%;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left, .footer-right {
    font-size: 1rem;
}

.footer-left {
    font-size: 0.9rem;
}

.footer-right {
    font-size: 0.9rem;
}

#projektyUEModal p {
	margin-bottom: 16px;
	text-align: justify;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    font-size: 0.9em;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h1,
.modal-content h2,
.modal-content h3{
margin-top: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-item {
    /*flex-basis: calc(25% - 8px);*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
	border-radius: 10px 0 10px 10px;
	overflow: hidden;
}

.gallery-item img {
    width: 100%;
	height: 100%;
    border-radius: 10px 0 10px 10px;
    cursor: pointer;
}

.gallery-item img:hover {
	transform: scale(1.1);
	transition: transform 0.3s ease;
	
}
/* Stylizacja lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-content {
    position: relative;
    margin-top: 30px;
    padding: 40px;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-slide {
    display: none;
    max-width: 100%;
    max-height: 100%;
    border-radius: 15px 0 15px 15px;
}

.close-lb {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
	z-index: 1001;
	padding: 10px;
}

/* Przewijanie obrazów */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 30px;
    color: white;
    padding: 16px;
    margin-top: -22px;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}



@media (max-width: 768px) {
	
	
	.quote-bar{
		min-width: auto;
		widt: 100%;
	}
	    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    #menu.show {
        display: flex;
    }
	#starter {
		background-image: none; 
	}
	
	.oferta-container {
        flex-direction: column; 
		width: 100%;
    }
	
	.oferta-tile {
		width: 100%;
		flex-direction: column;
        text-align: center; 
		align-items: center;
	}
	
	.oferta-tile img {
        display: block;
		margin: auto;
		width: 15%; 
        height: auto;
        margin-bottom: 0; 
    }
	
	.oferta-tile h3 {
		margin-top: 0; 
		margin-bottom: 10px; 
    }

    .oferta-tile p {
		margin: 0; 
    }

    .oferta-tile div {
        display: flex;
        flex-direction: column; 
    }
	
	.kontakt-container {
        grid-template-columns: 1fr;
    }
	
	.kontakt-left {
		border-radius: 15px 0 0 0;
	}
	
	.map-container {
		border-radius: 0 0 15px 15px;
	}
	
	footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-right {
        margin: 10px 0;
    }
	.privacy-policy-container {
    display: block;
    align-items: center;
    margin-bottom: 15px;
}

.privacy-policy-container input[type="checkbox"] {
	
    margin-right: 5px;
	margin-top: 25px;
	align-self: center;
}

.privacy-policy-container label {
    font-size: 14px;
	
}
	/*.gallery-item {
        flex-basis: calc(50% - 10px);
    }*/
	.o_nas-content {
        flex-direction: column;
    }

    .image-container, .text-container {
        max-width: 100%;
        padding-right: 0;
    }

    .image-container {
        margin-bottom: 20px;
    }
}


@media (max-width: 480px) {
    #starter .buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; 
    }

    #starter .btn {
		display: block;
        width: 100%;
        max-width: 300px; 
    }

}