* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

a {
	color: #000;
	text-decoration: none;
}

:root {
  --c-prostkey-orange: #f07301;
}

body {
	font-family: 'Roboto', sans-serif;
}

/* --- Topbar i header jak poprzednio --- */
.topbar {
	/* background: #fbfbfb; */
	background: #fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 10px 30px;
	gap: 30px;
	font-size: 14px;
	border-bottom: 1px solid #eee;
	flex-wrap: wrap;
}

.topbar .info-box {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #000;
	white-space: nowrap;
	cursor: default;
}

.topbar .info-box.email {
	cursor: pointer;
	text-decoration: none;
	color: #000;
}

.topbar .info-box.email:hover {
	text-decoration: underline;
}

header {
	position: sticky;
	top: 0;
	z-index: 1000; /* żeby było nad innymi elementami */
	
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	/* border-bottom: 1px solid #eee; */
	padding: 0;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
	display: flex;
	align-items: center;
	gap: 0;
	width: 100%;
	max-width: 1320px;
	justify-content: center;
}

.logo {
	width: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo img {
	width: 190px;
	height: 83px;
	object-fit: contain;
	display: block;
}

nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
}

.menu-item {
	position: relative;
	white-space: nowrap;
}

.menu-link {
	padding: 35px 15px;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #000;
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	transition: color 0.3s;
	white-space: nowrap;
	cursor: pointer;
}

.menu-link::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 25px; /* odległość kreski od dolnej krawędzi menu-link */
	height: 2px;
	background-color: rgba(255, 105, 0, 1);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	z-index: 1;
}

.menu-link:hover::before {
	transform: scaleX(1);
}



.menu-active {
	color: rgba(255, 105, 0, 1);
}

.menu-link:hover {
	color: rgba(255, 105, 0, 1);
}

.menu-link i {
	font-weight: 900;
	margin-left: 6px;
	font-size: 12px;
	user-select: none;
}

.menu-item:not(:has(.submenu)) .menu-link::after {
	content: "";
	margin: 0;
}

.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	min-width: 350px;
	z-index: 1000;
	white-space: nowrap;
}

.submenu a {
	display: block;
	padding: 20px 30px;
	text-decoration: none;
	color: #000;
	font-size: 16px;
	text-transform: uppercase;
	transition: all 0.3s;
	white-space: nowrap;
	border-bottom: 1px solid #eee;
}

.submenu a:hover {
	color: rgba(255, 105, 0, 1);
	border-bottom: 1px solid rgba(255, 105, 0, 1);
	background: transparent;
}

.menu-item:hover .submenu {
	display: block;
}

.social-icons {
	width: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 15px;
}

.social-icons a {
	color: #333;
	text-decoration: none;
	font-size: 18px;
	padding: 10px 20px;
	transition: color 0.3s;
	white-space: nowrap;
}

.social-icons a.facebook:hover {
	color: #1877f2;
}

.social-icons a.twitter:hover {
	color: #1da1f2;
}

.social-icons a.linkedin:hover {
	color: #0077b5;
}

/* Responsive menu logo */
@media (max-width: 1320px) {
	.header-content {
		flex-wrap: wrap;
		justify-content: center;
	}

	.logo {
		width: 100%;
		margin-bottom: 15px;
		order: 1;
	}

	nav {
		order: 2;
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}

	.social-icons {
		order: 3;
		width: 100%;
		justify-content: center;
		margin-top: 10px;
	}

	.social-icons a {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

@media (max-width: 900px) {
	header {
		flex-direction: column;
		height: auto;
		padding: 10px;
		position: relative;
	}

	.menu-link::before {
		bottom: 0px; /* odległość kreski od dolnej krawędzi menu-link */
	}

	.header-content {
		flex-direction: column;
	}

	nav {
		flex-direction: column;
	}

	.menu-link {
		padding: 10px 15px;
	}

	.social-icons {
		margin: 10px 0;
		width: 100%;
		gap: 15px;
	}

	.social-icons a {
		padding: 10px 15px;
	}
}











.footer {
  background-color: #111;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  margin: 0 auto;
  gap: 20px;
  text-align: center;
}

.footer-col {
  flex: 1 1 22%;
  min-width: 200px;
}

.footer-col.logo img {
  max-width: 180px;
  height: auto;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #f5841f;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f5841f;
}

.footer-bottom {
  background-color: #111;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  color: #aaa;
}

/* 🔁 Responsywność: 2 kolumny w rzędzie na tabletach */
@media (max-width: 1400px) {
  .footer-content {
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .footer-col.logo {
    order: -1;
    align-self: center;
  }

  .footer-col.logo img {
    margin-bottom: 20px;
  }
}

/* 🔁 Responsywność: 1 kolumna na bardzo małych ekranach */
@media (max-width: 480px) {
  .footer-col {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


.title2 {
	font-size: 16px;
	margin-bottom: 25px;

	color: #000000;
	font-size: 36px;
	
}