/* === RESET / PODSTAWA === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Lato", sans-serif;
	background-color: #f8f8f8;
	color: #222;
	overflow-x: hidden;
}

/* === HERO SECTION === */
header {
	margin: 0;
	padding: 0;
}

.hero {
	height: auto;
	display: flex;
	flex-direction: column;
	justify-aent: flex-start;
	align-items: center;
	text-align: center;
	background: url("tloStrony.png") center/cover no-repeat;
}

.hero img {
	max-width: 100%;
	height: auto;
	margin-top: 100px;
	margin-bottom: 100px;
}

.hero p {
	font-family: "Tahoma", serif;
	font-size: 35px;
	letter-spacing: 5px;
	color: #555;
	margin: 100px 0 100px 0;
}

/* FORMULARZ */
.formularz-sekcja {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 40px;
	padding: 60px 20px;
	background-color: #f5f5f5;
}

/* LEWA KOLUMNA */
.formularz-lewa {
	flex: 1 1 420px;
	max-width: 70%;
	height: 100%;
	background: url("tloStrony.png") center/cover no-repeat;
	padding: 40px 30px;
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	text-align: center;
}

.formularz-lewa p {
	font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
	font-size:22px;
}

/* PRAWA KOLUMNA */
.formularz-prawa {
	flex: 1 1 420px;
	max-width: 30%;
	background: url("tloStrony.png") center/cover no-repeat;
	padding: 26px;
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.formularz-prawa form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.formularz-prawa .row {
	display: flex;
	gap: 12px;
}

.formularz-prawa .row input {
	flex: 1;
}

.formularz-prawa input[type="text"],
.formularz-prawa input[type="tel"],
.formularz-prawa input[type="email"],
.formularz-prawa input[type="file"],
.formularz-prawa textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d6d6d6;
	border-radius: 6px;
	font-size: 15px;
	font-family: "Lato", sans-serif;
	background-color: #fff;
}

.formularz-prawa label {
	font-size: 14px;
	color: #333;
	margin-top: 6px;
	font-weight: 600;
}

.btn-wyslij {
	margin-top: 8px;
	background-color: #d00000;
	color: white;
	border: none;
	padding: 12px 16px;
	font-size: 16px;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.12s;
}

.btn-wyslij:hover {
	background-color: #a00000;
	transform: translateY(-1px);
}


/* === KONTAKT === */
.contact {
	text-align: center;
	padding: 80px 20px;
	background-color:#D3D3D3;
}

.contact h3 {
	font-family: "Malgun Gothic", serif;
	font-size: 32px;
	text-transform: uppercase;
	margin-bottom: 40px;
	color: #333;
	letter-spacing: 2px;
}

.contact-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 25px;
	font-size: 25px;
}

.contact-item img {
	height: 50px;
	width: auto;
}

.contact-item a {
	color: #222;
	text-decoration: none;
	transition: color 0.3s;
}

.contact-item a:hover {
	color: #0066cc;
}

/* === SOCIAL MEDIA === */
.socials {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 25px;
}

.socials img {
	height: 40px;
	width: 40px;
	transition: transform 0.3s, opacity 0.3s;
	opacity: 0.8;
}

.socials img:hover {
	transform: scale(1.1);
	opacity: 1;
}

/* === GALERIA === */
.realizacje {
	text-align: center;
	padding: 80px 0;
	background-color: #f7f7f7;
}

.realizacje h2 {
	font-family: "Malgun Gothic", serif;
	font-size: 2rem;
	letter-spacing: 2px;
	margin-bottom: 50px;
	color: #222;
}

.realizacje-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.realizacja-item {
	position: relative;
	overflow: hidden;
	width: 320px;
	height: 220px;
	border-radius: 6px;
	cursor: pointer;
	text-decoration: none;
}

.realizacja-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter 0.4s ease, transform 0.4s ease;
}

.realizacja-item:hover img {
	transform: scale(1.05);
}

.overlay {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	text-align: center;
	padding: 15px 0;
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 1px;
	transition: background 0.3s ease;
}

.realizacja-item:hover .overlay {
	background: rgba(0, 0, 0, 0.7);
}

/* === PARTNERZY === */
.partners {
	text-align: center;
	padding: 60px 20px;
	background: url("tloStrony.png") center/cover no-repeat;
}

.partners h2 {
	font-family: "Malgun Gothic", serif;
	font-size: 36px;
	margin-bottom: 40px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #333;
}

.partner-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.partner-logos img {
	height: 80px;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.partner-logos img:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}

/* === RESPONSYWNOŚĆ DLA HERO === */
@media (max-width: 1024px) {
	.hero img {
		max-width: 90%;
		height: auto;
		margin-top: 50px;
	}

	.hero h1 {
		font-size: 50px;
		margin: 100px 0 30px 0;
	}

	.hero h2 {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.hero {
		height: auto;
		background-size: cover;
		background-position: center;
		padding: 10px 20px;
	}

	.hero img {
		max-width: 80%;
		height: auto;
		margin-top: 30px;
	}
	.hero h2 {
		font-size: 15px;
		margin-bottom: 10px;
	}

	.hero h1 {
		font-size: 20px;
		margin: 40px 0 20px 0;
	}
.formularz-sekcja {
		flex-direction: column;
		align-items: center;
	}

	.formularz-lewa,
	.formularz-prawa {
		max-width: 100%;
	}

	.formularz-prawa .row {
		flex-direction: column;
	}
.formularz-lewa p {
		font-size: 10px !important;
	}
}

@media (max-width: 400px) {
	.hero h1 {
		font-size: 24px;
	}
	.hero img {
		max-width: 75%;
		height: auto;
	}

	.realizacja-item {
		width: 95%;
	}
.formularz-lewa p {
		font-size: 8px !important;
		}
}



