html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	color: #333;
}

.hero {
	background-image: url('/lib/placeholder_SPWJ_2.png');
	background-size: cover;
	background-position: center;
	height: 70vh;
	display: flex;
	align-items: center;
	position: relative;
	color: white;
}

#menu-toggle {
  cursor: pointer;
}

#lightbox-img {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.hero-content {
	position: relative;
	z-index: 10;
	padding: 0 5%;
	max-width: 60%;
}

.hero-content h1 {
	font-size: 3.5em;
	margin-bottom: 10px;
	line-height: 1.1;
}

.hero-content p {
	font-size: 1.4em;
	margin-bottom: 30px;
	font-weight: 300;
}

.cta-buttons a {
	display: inline-block;
	padding: 12px 30px;
	margin-right: 20px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 5px;
	transition: background-color 0.3s;
}

.cta-buttons .main-cta {
	background-color: #007bff;
	color: white;
}

.cta-buttons .main-cta:hover {
	background-color: #0056b3;
}

.cta-buttons .secondary-cta {
	background-color: #6c757d;
	color: white;
}

.cta-buttons .secondary-cta:hover {
	background-color: #5a6268;
}

@media (max-width: 768px) {
	.hero-content {
		max-width: 90%;
	}

	.hero-content h1 {
		font-size: 2.5em;
	}

	.hero-content p {
		font-size: 1.1em;
	}

	.cta-buttons a {
		display: block;
		margin: 10px 0;
		text-align: center;
	}
}

.btn {
  display: inline-flex;
  align-items: center;
  font-weight: 500;          /* odpowiednik font-medium */
  border-radius: 0.5rem;     /* rounded-lg */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* shadow */
  transition: background-color 0.3s ease; /* transition */
}
