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

/* HERO */
.hero-section {
	text-align: center;
	padding: 100px 20px 60px;
	background: linear-gradient(135deg, #f9f9f9, #f0ebe7);
	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;
}

/* INFO SECTIONS */
.info-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	padding: 60px 20px;
	background-color: #fafafa;
}

.postavljanje,
.odrzavanje {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
	flex: 1;
	max-width: 500px;
	transition: 0.3s ease;
}

.postavljanje:hover,
.odrzavanje:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.postavljanje h2,
.odrzavanje h2 {
	font-size: 24px;
	color: #4b2e1d;
	margin-bottom: 20px;
	text-align: center;
}

.postavljanje-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.item {
	width: 100px;
	text-align: center;
	transition: transform 0.3s ease;
}

.item:hover {
	transform: scale(1.12);
}

.item img {
	width: 100%;
	height: 80px;
	object-fit: cover;
	border-radius: 12px;
}

.item p {
	margin-top: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #555;
}

.odrzavanje p {
	font-size: 15px;
	color: #555;
	text-align: center;
	max-width: 460px;
	margin: auto;
}

/* TABELA SPECIFIKACIJE */
.tabela-section {
	background-color: #ffffff;
	padding: 50px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 960px;
	margin: 80px auto;
}

.tabela-section h2 {
	text-align: center;
	margin-bottom: 35px;
	color: #4b2e1d;
	font-weight: 700;
	font-size: 28px;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 18px;
	text-align: left;
	border-bottom: 1px solid #ddd;
	vertical-align: top;
}

th {
	background-color: #4b2e1d;
	color: white;
	font-weight: 600;
	font-size: 16px;
}

td {
	color: #333;
	font-size: 14px;
}

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

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

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

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

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

.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: 12px;
	color: #4b2e1d;
	font-size: 16px;
}

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

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

/* 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;
	}
}

/* Telefoni vrlo mali (do 375px) */
@media (max-width: 375px) {
	.hero-section {
		padding: 40px 8px 20px;
	}
	.hero-section h1 {
		font-size: 22px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 13px;
	}
	.kartica {
		width: 95%;
	}
	.kartica img {
		height: 120px;
	}
	.kartica h2 {
		font-size: 16px;
	}
	.kartica p {
		font-size: 12px;
	}
	.item {
		width: 60px;
	}
	.item img {
		height: 50px;
	}
	.item p {
		font-size: 11px;
	}
	.tabela-section table {
		font-size: 12px;
	}
	.rad-item {
		width: 95%;
	}
	.rad-item img {
		height: 120px;
	}
	.rad-item a {
		font-size: 12px;
	}
	.dugme-kartica {
		font-size: 10px;
		padding: 5px 9px;
	}
	.tabela-section h2,
	.postavljanje h2,
	.odrzavanje h2,
	.radovi-section h2 {
		font-size: 16px;
	}
}

/* Telefoni standardni (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
	.hero-section {
		padding: 45px 10px 25px;
	}
	.hero-section h1 {
		font-size: 24px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 13.5px;
	}
	.kartica {
		width: 95%;
	}
	.kartica img {
		height: 130px;
	}
	.kartica h2 {
		font-size: 17px;
	}
	.kartica p {
		font-size: 13px;
	}
	.item {
		width: 70px;
	}
	.item img {
		height: 55px;
	}
	.item p {
		font-size: 12px;
	}
	.tabela-section table {
		font-size: 12.5px;
	}
	.rad-item {
		width: 95%;
	}
	.rad-item img {
		height: 130px;
	}
	.rad-item a {
		font-size: 13px;
	}
	.dugme-kartica {
		font-size: 11px;
		padding: 6px 10px;
	}
	.tabela-section h2,
	.postavljanje h2,
	.odrzavanje h2,
	.radovi-section h2 {
		font-size: 18px;
	}
}

/* Telefoni veći (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
	.hero-section {
		padding: 50px 15px 30px;
	}
	.hero-section h1 {
		font-size: 28px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 14px;
	}
	.kartica {
		width: 90%;
	}
	.kartica img {
		height: 140px;
	}
	.kartica h2 {
		font-size: 18px;
	}
	.kartica p {
		font-size: 13.5px;
	}
	.item {
		width: 80px;
	}
	.item img {
		height: 60px;
	}
	.item p {
		font-size: 12.5px;
	}
	.tabela-section table {
		font-size: 13px;
	}
	.rad-item {
		width: 90%;
	}
	.rad-item img {
		height: 140px;
	}
	.rad-item a {
		font-size: 13.5px;
	}
	.dugme-kartica {
		font-size: 12px;
		padding: 7px 12px;
	}
	.tabela-section h2,
	.postavljanje h2,
	.odrzavanje h2,
	.radovi-section h2 {
		font-size: 20px;
	}
}

/* Tableti (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	.hero-section {
		padding: 60px 20px 40px;
	}
	.hero-section h1 {
		font-size: 34px;
	}
	.hero-section p {
		font-size: 15px;
	}
	.kartica {
		width: 45%;
	}
	.kartica img {
		height: 150px;
	}
	.kartica h2 {
		font-size: 20px;
	}
	.kartica p {
		font-size: 14px;
	}
	.item {
		width: 90px;
	}
	.item img {
		height: 70px;
	}
	.item p {
		font-size: 13px;
	}
	.tabela-section table {
		font-size: 13.5px;
	}
	.rad-item {
		width: 40%;
	}
	.rad-item img {
		height: 150px;
	}
	.rad-item a {
		font-size: 14px;
	}
	.dugme-kartica {
		font-size: 12.5px;
		padding: 8px 14px;
	}
	.tabela-section h2,
	.postavljanje h2,
	.odrzavanje h2,
	.radovi-section h2 {
		font-size: 22px;
	}
}

/* Desktop (1025px i više) */
@media (min-width: 1025px) {
	.hero-section {
		padding: 60px 20px 40px;
	}
	.hero-section h1 {
		font-size: 38px;
	}
	.hero-section p {
		font-size: 16px;
	}
	.kartica {
		width: 220px;
	}
	.kartica img {
		height: 150px;
	}
	.kartica h2 {
		font-size: 18px;
	}
	.kartica p {
		font-size: 14px;
	}
	.item {
		width: 100px;
	}
	.item img {
		height: 80px;
	}
	.item p {
		font-size: 13px;
	}
	.tabela-section table {
		font-size: 13px;
	}
	.rad-item {
		width: 230px;
	}
	.rad-item img {
		height: 140px;
	}
	.rad-item a {
		font-size: 14px;
	}
	.dugme-kartica {
		font-size: 12px;
		padding: 7px 12px;
	}
	.tabela-section h2,
	.postavljanje h2,
	.odrzavanje h2,
	.radovi-section h2 {
		font-size: 22px;
	}
}
