body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(180deg, #fafafa, #f0f0f0);
	color: #333;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.chevron-page {
	padding: 40px 20px;
	max-width: 1400px;
	margin: auto;
}

.hero-section {
	padding: 60px 20px;
	text-align: center;
	animation: fadeInDown 1s ease;
}

.hero-section h1 {
	font-size: 50px;
	color: #2a2a2a;
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-section p {
	font-size: 22px;
	color: #555;
	margin: 20px auto;
	max-width: 900px;
}

.hero-section blockquote {
	font-style: italic;
	color: #888;
	font-size: 20px;
	margin-top: 20px;
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.kartice-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	padding: 40px 0;
	animation: fadeIn 1s ease;
}

.kartica {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 380px;
	padding: 30px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.kartica::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.15) 0%,
		transparent 70%
	);
	transform: rotate(30deg);
	transition: all 0.7s ease;
}

.kartica:hover::before {
	transform: rotate(390deg);
}

.kartica:hover {
	transform: translateY(-10px) scale(1.04);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.kartica img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 20px;
	transition: transform 0.5s ease;
}

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

.kartica h2 {
	font-size: 24px;
	color: #222;
	margin-bottom: 15px;
}

.kartica p {
	font-size: 18px;
	color: #555;
	margin-bottom: 10px;
}

.cena-napomena {
	font-style: italic;
	color: #777;
	font-size: 16px;
}

.contact-info {
	text-align: center;
	margin-top: 50px;
	font-size: 18px;
	color: #0a0a0a;
	font-weight: bold;
}

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

.contact-info a:hover {
	color: #c13b65;
}

.zoom-container {
	position: relative;
	cursor: zoom-in;
}

.zoom-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	padding: 5px;
	font-size: 20px;
	color: #4b2e1d;
	pointer-events: none;
}

.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);
}
.cena-napomena {
	font-style: italic;
	color: #777;
	font-size: 16px;
	text-align: center;
	margin-top: 20px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 375px) {
	.hero-section {
		margin-top: 90px;
		padding: 15px;
	}
	.hero-section h1 {
		font-size: 22px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 14px;
	}
	.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: 100px;
		padding: 18px;
	}
	.hero-section h1 {
		font-size: 24px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 15px;
	}
	.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: 110px;
		padding: 20px;
	}
	.hero-section h1 {
		font-size: 26px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 16px;
	}
	.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: 17px;
	}
	.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;
	}
}
