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

.container {
	width: 90%;
	margin: auto;
	padding: 60px 0;
	margin-top: 120px;
	animation: fadeIn 1.2s ease;
}

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

h1 {
	text-align: center;
	font-size: 3em;
	margin-bottom: 20px;
	color: #4b2e1d;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	animation: slideDown 1.5s ease;
}

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

.karakteristike {
	text-align: center;
	font-size: 1.2em;
	margin-bottom: 50px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	color: #555;
}

/* Kartice */
.kartice {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.kartica {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	text-align: center;
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	cursor: pointer;
	position: relative;
}

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

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

.kartica:hover {
	transform: translateY(-15px) scale(1.05);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.kartica img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.kartica h3 {
	font-size: 1.3em;
	padding: 20px 10px 10px;
	color: #4b2e1d;
}

.kartica p {
	font-size: 1em;
	padding: 0 20px 20px;
	color: #555;
}

/* Info sekcije */
.info-sekcije {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-bottom: 60px;
	flex-wrap: wrap;
	animation: fadeIn 1.5s ease;
}

.kolona {
	background: #fff;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	width: 320px;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kolona:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.kolona h2 {
	text-align: center;
	color: #4b2e1d;
	margin-bottom: 20px;
	font-size: 1.5em;
}

.kolona ul {
	list-style: none;
	padding: 0;
	font-size: 1em;
	color: #555;
}

.kolona li {
	margin: 12px 0;
}

/* Dugme unutar kartice */
.dugme-kartica {
	display: inline-block;
	margin-top: 15px;
	padding: 12px 30px;
	background: linear-gradient(45deg, #4b2e1d, #a0794c);
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-size: 16px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.4s ease;
}

.dugme-kartica:hover {
	background: linear-gradient(45deg, #7a5130, #d9b480);
	transform: scale(1.1);
}

/* Prednosti sekcija */
.section-title {
	text-align: center;
	font-size: 30px;
	color: #4b2e1d;
	margin-bottom: 30px;
}

.prednosti-section {
	text-align: center;
	padding: 50px 20px;
	background: linear-gradient(180deg, #f4f1ee, #ffffff);
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 60px;
}

.prednosti-section p {
	font-size: 16px;
	color: #555;
	max-width: 900px;
	margin: 0 auto;
	line-height: 1.8;
}

/* Kontakt */
.contact-info {
	text-align: center;
	margin-top: 40px;
	font-size: 16px;
	color: #4b2e1d;
	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;
}

/* Disclaimer */
.disclaimer {
	font-size: 14px;
	color: #888;
	margin-top: 30px;
	text-align: center;
}

/* Zoom ostaje tvoj: */
.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.9);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
}

/* VEĆI DESKTOP EKRANI (širina preko 1200px) */
@media (min-width: 1200px) {
	.container {
		width: 85%;
		padding: 50px 0;
	}
	.kartice {
		grid-template-columns: repeat(4, 1fr);
		gap: 25px;
	}
	.kartica img {
		height: 220px;
	}
	.kartica h3 {
		font-size: 1.2em;
	}
}

/* TABLETI I MANJI DESKTOP (širina 769px - 1199px) */
@media (min-width: 769px) and (max-width: 1199px) {
	.container {
		width: 90%;
		padding: 40px 0;
	}
	.kartice {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
	.kartica img {
		height: 200px;
	}
}

/* MOBILNI TELEFONI DO 768px */
@media (max-width: 768px) {
	.container {
		width: 100%;
		padding: 20px;
	}
	h1 {
		font-size: 2em;
	}
	.kartice {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}
	.kartica img {
		height: 160px;
	}
	.kartica h3 {
		font-size: 1em;
	}
	.kartica p {
		font-size: 0.9em;
	}
}

/* MALI MOBILNI DO 480px */
@media (max-width: 480px) {
	h1 {
		font-size: 1.7em;
	}
	.kartice {
		grid-template-columns: 1fr;
	}
	.kartica img {
		height: 140px;
	}
	.kartica h3 {
		font-size: 0.95em;
	}
	.kartica p {
		font-size: 0.85em;
	}
}
