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

/* Hero sekcija */
.chevron-page .hero-section {
	margin-top: 140px;
	margin-bottom: 60px;
	padding: 20px;
	text-align: center;
	animation: fadeInDown 1s ease;
}

.hero-section h1 {
	font-size: 42px;
	color: #4b2e1d;
	margin-bottom: 20px;
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.hero-section blockquote {
	font-size: 18px;
	color: #555;
	font-style: italic;
	margin: 0 auto;
	max-width: 700px;
}

/* Kartice sekcija */
.kartice-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	padding: 0 20px 60px;
	animation: fadeIn 1s ease;
}

.kartica {
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	width: 260px;
	padding: 25px;
	text-align: center;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	position: relative;
	overflow: hidden;
}

.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: 200px;
	border-radius: 12px;
	object-fit: cover;
	cursor: pointer;
	transition: transform 0.4s ease;
}

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

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

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

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

.cena-napomena:last-of-type {
	font-size: 14px;
	color: #888;
	margin-top: 30px;
}

/* Kontakt */
.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 (zoom sistem ostaje 100% tvoj) */
.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);
}

.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;
}

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

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

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

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

/* Telefoni standardni (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
	.hero-section h1 {
		font-size: 24px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 16px;
	}
	.kartica {
		width: 200px;
		padding: 10px;
	}
	.kartica h2 {
		font-size: 14px;
	}
	.kartica p {
		font-size: 12px;
	}
}

/* Telefoni veći (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
	.hero-section h1 {
		font-size: 28px;
	}
	.kartica {
		width: 220px;
		padding: 15px;
	}
	.kartica h2 {
		font-size: 16px;
	}
	.kartica p {
		font-size: 12px;
	}
	.kartice-section {
		flex-direction: column;
		align-items: center;
	}
	.lightbox img {
		max-width: 80%;
		max-height: 80%;
	}
}

/* Tableti (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	.hero-section h1 {
		font-size: 30px;
	}
	.kartica {
		width: 230px;
		padding: 18px;
	}
	.kartica h2 {
		font-size: 17px;
	}
	.kartica p {
		font-size: 13px;
	}
}

/* Desktop (1025px i više) */
@media (min-width: 1025px) {
	.hero-section h1 {
		font-size: 32px;
	}
	.kartica {
		width: 240px;
		padding: 20px;
	}
	.kartica h2 {
		font-size: 18px;
	}
	.kartica p {
		font-size: 14px;
	}
}
