

.hero {
	max-width: 1200px;
	width: 100%;
	min-height: 100vh;

	display: flex;
	align-items: center;
	justify-content: center;

	position: relative;
	overflow: hidden;

	padding: 120px 20px;

	background:url('../assets/obd.png') center/cover no-repeat;
}


/* ciemna warstwa */
.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65); /* 🔥 kluczowe */
}

/* content */
.hero-content {
	position: relative;
	z-index: 2;

	max-width: 800px;
	text-align: center;
	color: white;
}

.hero-content h1 {
    
	font-size: clamp(32px, 5vw, 56px);
	margin-bottom: 20px;
}

.hero-content p {
	font-size: 18px;
	opacity: 0.8;
	margin-bottom: 30px;
}

/* przyciski */
.hero-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 14px 26px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;
}

/* primary */
.btn.primary {
	background: #3b82f6;
	color: white;
}

.btn.primary:hover {
	background: #2563eb;
}

/* secondary */
.btn.secondary {
	border: 1px solid #3b82f6;
	color: #3b82f6;
}

.btn.secondary:hover {
	background: #3b82f6;
	color: white;
}
