body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f4f1ee;
}

/* Hero sekcija */
.chevron-page .hero-section {
	margin-top: 140px;
	text-align: center;
	padding: 20px;
}

.hero-section h1 {
	font-size: 32px;
	color: #4b2e1d;
	margin-bottom: 10px;
}

.hero-section p {
	font-size: 18px;
	font-style: italic;
	color: #777;
	margin-bottom: 10px;
}

.hero-section blockquote {
	font-size: 16px;
	color: #555;
	margin-top: 0;
	font-style: italic;
}

/* Kartice */
.kartice-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 40px 20px;
}

.kartica {
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	width: 260px;
	padding: 20px;
	text-align: left;
	transition: transform 0.3s ease;
	position: relative;
}

.kartica:hover {
	transform: translateY(-5px);
}

.kartica img {
	width: 100%;
	height: 180px;
	border-radius: 8px;
	object-fit: cover;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.kartica img:hover {
	transform: scale(1.05);
}

.kartica h2 {
	font-size: 18px;
	color: #4b2e1d;
	margin-top: 10px;
}

.kartica p {
	font-size: 14px;
	color: #444;
	margin: 5px 0;
}

.cena-napomena {
	font-size: 16px;
	font-weight: bold;
	color: #070707;
	text-align: center;
	margin-top: 10px;
}

/* Kontakt info */
.contact-info {
	font-size: 16px;
	color: #4b2e1d;
	text-align: center;
	margin-top: 30px;
	padding-bottom: 40px;
}

.contact-info a {
	color: #e94e77;
	text-decoration: none;
	font-weight: bold;
}

.contact-info a:hover {
	text-decoration: underline;
}

/* Lightbox (ostaje originalni zoom koji koristiš) */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 20px;
}

.lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.close-btn {
	position: absolute;
	top: 30px;
	right: 40px;
	font-size: 30px;
	color: white;
	cursor: pointer;
	z-index: 10000;
}

/* Telefoni vrlo mali (do 375px) */
@media (max-width: 375px) {
	.hero-section {
		margin-top: 80px;
		padding: 15px;
	}
	.hero-section h1 {
		font-size: 22px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 13px;
	}
	.kartica {
		width: 180px;
		padding: 10px;
	}
	.kartica h2 {
		font-size: 13px;
	}
	.kartica p {
		font-size: 11px;
	}
	.cena-napomena {
		font-size: 14px;
	}
	.contact-info {
		font-size: 13px;
	}
	.lightbox img {
		max-width: 75%;
		max-height: 75%;
	}
}

/* Telefoni standardni (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
	.hero-section {
		margin-top: 90px;
		padding: 18px;
	}
	.hero-section h1 {
		font-size: 24px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 14px;
	}
	.kartica {
		width: 200px;
		padding: 12px;
	}
	.kartica h2 {
		font-size: 14px;
	}
	.kartica p {
		font-size: 12px;
	}
	.cena-napomena {
		font-size: 15px;
	}
	.contact-info {
		font-size: 14px;
	}
	.lightbox img {
		max-width: 80%;
		max-height: 80%;
	}
}

/* Telefoni veći (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
	.hero-section {
		margin-top: 100px;
		padding: 20px;
	}
	.hero-section h1 {
		font-size: 26px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 15px;
	}
	.kartica {
		width: 220px;
		padding: 15px;
	}
	.kartica h2 {
		font-size: 16px;
	}
	.kartica p {
		font-size: 12px;
	}
	.cena-napomena {
		font-size: 16px;
	}
	.contact-info {
		font-size: 15px;
	}
}

/* Tableti (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	.hero-section {
		margin-top: 120px;
		padding: 25px;
	}
	.hero-section h1 {
		font-size: 30px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 16px;
	}
	.kartica {
		width: 240px;
		padding: 20px;
	}
	.kartica h2 {
		font-size: 18px;
	}
	.kartica p {
		font-size: 14px;
	}
	.cena-napomena {
		font-size: 16px;
	}
	.contact-info {
		font-size: 16px;
	}
}

/* Desktop (1025px i više) */
@media (min-width: 1025px) {
	.hero-section {
		margin-top: 140px;
		padding: 20px;
	}
	.hero-section h1 {
		font-size: 32px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 18px;
	}
	.kartica {
		width: 240px;
		padding: 20px;
	}
	.kartica h2 {
		font-size: 18px;
	}
	.kartica p {
		font-size: 14px;
	}
	.cena-napomena {
		font-size: 16px;
	}
	.contact-info {
		font-size: 16px;
	}
}
