/* Globalno */
body {
	font-family: "Segoe UI", Tahoma, sans-serif;
	margin: 0;
	padding: 0;
	background: #f7f6f4;
	color: #333;
	scroll-behavior: smooth;
	overflow-x: hidden;
	padding-top: 120px;
}

/* HERO */
.hero-section {
	text-align: center;
	padding: 100px 20px 60px;
	background: linear-gradient(135deg, #f9f9f9, #f0ebe7);
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.1);
	margin-top: 90px;
}

.hero-section h1 {
	font-size: 42px;
	color: #4b2e1d;
	margin-bottom: 20px;
	animation: fadeInDown 1.2s ease;
}

.hero-section p {
	font-size: 18px;
	color: #555;
	animation: fadeInUp 1.4s ease;
}

.hero-section blockquote {
	font-style: italic;
	color: #888;
	margin-top: 20px;
	font-size: 16px;
	animation: fadeInUp 1.6s ease;
}

/* KARTICE */
.kartice-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	padding: 50px 20px;
	background: #fff;
}

.kartica {
	width: 260px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	cursor: pointer;
	text-align: center;
	padding-bottom: 20px;
}

.kartica:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

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

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

.kartica p {
	font-size: 14px;
	color: #666;
	margin: 0 15px 10px;
}

.cena-napomena {
	text-align: center;
	font-size: 13px;
	font-style: italic;
	color: #888;
	margin: 30px 0;
}

/* ABOUT */
.chevron-about {
	padding: 80px 20px;
	background: linear-gradient(120deg, #fff8f0, #f9f7f5);
	text-align: center;
}

.section-header {
	display: flex;
	justify-content: space-between;
	gap: 50px;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.left-section,
.right-section {
	flex: 1;
	text-align: left;
}

.chevron-title {
	font-size: 28px;
	color: #4b2e1d;
	margin-bottom: 20px;
}

.chevron-advantages-list {
	list-style: none;
	padding-left: 0;
	font-size: 16px;
	color: #555;
}

.chevron-advantages-list li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
}

.chevron-advantages-list li::before {
	content: "✔";
	color: #4b2e1d;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 0;
}

/* SPECIFIKACIJE */
.specifikacije-section {
	padding: 80px 20px;
	background-color: #f4f1ee;
	text-align: center;
}

.specifikacije-section h2 {
	font-size: 28px;
	margin-bottom: 30px;
	color: #4b2e1d;
}

.tabela-specifikacije {
	max-width: 700px;
	margin: 0 auto;
	text-align: left;
}

.red-spec {
	display: flex;
	justify-content: space-between;
	background: #fff;
	border-radius: 12px;
	padding: 15px 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	font-size: 16px;
	margin-bottom: 15px;
}

.spec-naslov {
	font-weight: bold;
	color: #333;
}

.spec-vrednost {
	color: #555;
}

/* RADOVI */
.radovi-section {
	padding: 80px 20px;
	background-color: #fff;
	text-align: center;
}

.radovi-section h2 {
	font-size: 28px;
	color: #4b2e1d;
	margin-bottom: 30px;
}

.radovi-grid {
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
}

.rad-item {
	width: 260px;
	cursor: pointer;
	transition: transform 0.4s ease;
}

.rad-item:hover {
	transform: translateY(-8px);
}

.rad-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.rad-item h3 {
	margin-top: 10px;
	color: #4b2e1d;
}

/* Kontakt link */
.contact-info {
	text-align: center;
	margin-top: 40px;
	font-size: 16px;
	color: #0a0a0a;
	font-weight: bold;
}

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

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

/* LIGHTBOX */
.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.3);
}

.close-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	color: white;
	font-size: 32px;
	cursor: pointer;
}

/* Animacije */
@keyframes fadeInDown {
	0% {
		transform: translateY(-20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeInUp {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Animacije */

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

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Telefoni vrlo mali (do 375px) */
@media (max-width: 375px) {
	.hero-section {
		padding: 25px 10px 20px;
	}
	.hero-section h1 {
		font-size: 22px;
	}
	.hero-section p {
		font-size: 12px;
	}
	.chevron-title {
		font-size: 18px;
	}
	.kartica {
		width: 95%;
	}
	.kartica img,
	.rad-item img {
		height: 120px;
	}
	.kartica h2 {
		font-size: 16px;
	}
	.kartica p {
		font-size: 12px;
	}
	.dugme-kartica {
		padding: 5px 12px;
		font-size: 11px;
	}
	.chevron-advantages-list li {
		font-size: 12px;
	}
	.red-spec {
		font-size: 12px;
	}
	.rad-item {
		width: 95%;
	}
	.rad-item h3 {
		font-size: 14px;
	}
}

/* Telefoni standardni (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
	.hero-section {
		padding: 30px 12px 25px;
	}
	.hero-section h1 {
		font-size: 24px;
	}
	.hero-section p {
		font-size: 13px;
	}
	.chevron-title {
		font-size: 20px;
	}
	.kartica {
		width: 95%;
	}
	.kartica img,
	.rad-item img {
		height: 130px;
	}
	.kartica h2 {
		font-size: 17px;
	}
	.kartica p {
		font-size: 13px;
	}
	.dugme-kartica {
		padding: 6px 14px;
		font-size: 12px;
	}
	.chevron-advantages-list li {
		font-size: 12.5px;
	}
	.red-spec {
		font-size: 12.5px;
	}
	.rad-item {
		width: 95%;
	}
	.rad-item h3 {
		font-size: 14.5px;
	}
}

/* Telefoni veći (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
	.hero-section {
		padding: 40px 15px 30px;
	}
	.hero-section h1 {
		font-size: 26px;
	}
	.hero-section p {
		font-size: 14px;
	}
	.chevron-title {
		font-size: 22px;
	}
	.kartica {
		width: 90%;
	}
	.kartica img,
	.rad-item img {
		height: 140px;
	}
	.kartica h2 {
		font-size: 18px;
	}
	.kartica p {
		font-size: 13.5px;
	}
	.dugme-kartica {
		padding: 7px 16px;
		font-size: 12.5px;
	}
	.chevron-advantages-list li {
		font-size: 13px;
	}
	.red-spec {
		font-size: 13px;
	}
	.rad-item {
		width: 90%;
	}
	.rad-item h3 {
		font-size: 15px;
	}
}

/* Tableti (768px - 992px) */
@media (min-width: 768px) and (max-width: 992px) {
	.hero-section {
		padding: 50px 20px 40px;
	}
	.hero-section h1 {
		font-size: 30px;
	}
	.hero-section p {
		font-size: 15px;
	}
	.chevron-title {
		font-size: 24px;
	}
	.kartica {
		width: 42%;
	}
	.kartica img,
	.rad-item img {
		height: 150px;
	}
	.kartica h2 {
		font-size: 19px;
	}
	.kartica p {
		font-size: 14px;
	}
	.dugme-kartica {
		padding: 8px 18px;
		font-size: 13px;
	}
	.red-spec {
		font-size: 13.5px;
	}
	.rad-item {
		width: 42%;
	}
	.rad-item h3 {
		font-size: 16px;
	}
}

/* Desktop (993px - 1199px) */
@media (min-width: 993px) and (max-width: 1199px) {
	.hero-section {
		padding: 60px 20px 50px;
	}
	.hero-section h1 {
		font-size: 34px;
	}
	.kartica {
		width: 220px;
	}
	.rad-item {
		width: 220px;
	}
	.kartica img,
	.rad-item img {
		height: 160px;
	}
	.dugme-kartica {
		padding: 8px 18px;
	}
}

/* Veliki desktop (1200px+) */
@media (min-width: 1200px) {
	.hero-section {
		padding: 70px 20px 60px;
	}
	.hero-section h1 {
		font-size: 36px;
	}
	.kartica {
		width: 250px;
	}
	.rad-item {
		width: 250px;
	}
	.kartica img,
	.rad-item img {
		height: 180px;
	}
}
