html {
	scroll-behavior: smooth;
}

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

/* HERO SECTION */
.hero-section {
	background-color: #f4f1ee;
	text-align: center;
	padding: 80px 20px 60px;
	color: #4b2e1d;
	box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.1);
	animation: fadeIn 1.5s ease;
	margin-top: 90px;
}

.hero-section h1 {
	font-size: 42px;
	font-weight: 700;
	color: #4b2e1d;
	margin-bottom: 20px;
	animation: slideDown 1.5s ease;
}

.hero-section p {
	font-size: 18px;
	color: #777;
	animation: fadeIn 2s ease;
}

.hero-section blockquote {
	font-style: italic;
	color: #777;
	font-size: 16px;
	margin-top: 12px;
	animation: fadeIn 2.5s ease;
}

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

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

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

.kartica {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 240px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

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

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

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

.kartica h2 {
	font-size: 20px;
	color: #4b2e1d;
	margin: 12px 0 6px 0;
	text-align: center;
}

.kartica p {
	font-size: 14px;
	color: #555;
	margin: 0 15px 10px;
	text-align: center;
}

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

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

/* SEKCIJA TEKSTA I OPISA */
.info-section {
	padding: 60px 20px;
	text-align: center;
	max-width: 850px;
	margin: 0 auto;
	color: #555;
	font-size: 16px;
	line-height: 1.8;
	background: #faf9f7;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-radius: 16px;
}

/* SEKCIJA LISTE */
.lvt-flex-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	padding: 70px 20px;
	background: #fafafa;
}

.gde-se-koristi,
.zasto-lvt {
	background: #fff;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	flex: 1 1 400px;
	transition: 0.3s ease;
}

.gde-se-koristi:hover,
.zasto-lvt:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gde-se-koristi h2,
.zasto-lvt h2 {
	color: #4b2e1d;
	font-size: 22px;
	margin-bottom: 20px;
}

.lista-lvt {
	list-style: none;
	padding-left: 0;
}

.lista-lvt li {
	font-size: 16px;
	color: #555;
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
}

.lista-lvt li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: #4b2e1d;
	font-weight: bold;
}

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

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

.tabela-specifikacije {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 700px;
	margin: 0 auto;
	text-align: left;
}

.red-spec {
	display: flex;
	justify-content: space-between;
	background-color: #fff;
	padding: 16px 24px;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.spec-naslov {
	font-weight: 600;
	color: #333;
	font-size: 16px;
}

.spec-vrednost {
	color: #4b2e1d;
	font-weight: 500;
	font-size: 16px;
}

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

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

.rad-item {
	width: 240px;
	transition: 0.3s ease;
	cursor: pointer;
}

.rad-item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.4s ease;
}

.rad-item:hover img {
	transform: scale(1.08);
}

.rad-item h3 {
	color: #4b2e1d;
	margin-top: 12px;
	font-size: 16px;
}
.cena-napomena {
	text-align: center;
	font-size: 15px;
	font-style: italic;
	color: #555;
	margin: 50px auto 30px auto;
	padding: 15px 20px;
	max-width: 600px;
	background: #f9f6f3;
	border-left: 5px solid #a0794c;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Telefoni vrlo mali (do 375px) */
@media (max-width: 375px) {
	.hero-section {
		padding: 30px 10px;
	}
	.hero-section h1 {
		font-size: 22px;
	}
	.hero-section p,
	.hero-section blockquote,
	.info-section,
	.gde-se-koristi p,
	.lista-lvt,
	.spec-naslov,
	.spec-vrednost {
		font-size: 12px;
	}
	.kartica,
	.rad-item,
	.gde-se-koristi,
	.zasto-lvt {
		width: 95%;
	}
	.kartica img,
	.rad-item img {
		height: 110px;
	}
	.dugme-kartica {
		font-size: 11px;
		padding: 5px 10px;
	}
	.red-spec {
		padding: 10px 15px;
	}
	.specifikacije-section h2 {
		font-size: 18px;
	}
}

/* Telefoni standardni (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
	.hero-section {
		padding: 35px 12px;
	}
	.hero-section h1 {
		font-size: 24px;
	}
	.hero-section p,
	.hero-section blockquote,
	.info-section,
	.gde-se-koristi p,
	.lista-lvt,
	.spec-naslov,
	.spec-vrednost {
		font-size: 13px;
	}
	.kartica img,
	.rad-item img {
		height: 120px;
	}
	.dugme-kartica {
		font-size: 12px;
		padding: 6px 12px;
	}
	.red-spec {
		padding: 10px 16px;
	}
	.specifikacije-section h2 {
		font-size: 20px;
	}
}

/* Telefoni veći (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
	.hero-section {
		padding: 40px 15px;
	}
	.hero-section h1 {
		font-size: 26px;
	}
	.hero-section p,
	.hero-section blockquote,
	.info-section,
	.gde-se-koristi p,
	.lista-lvt,
	.spec-naslov,
	.spec-vrednost {
		font-size: 13.5px;
	}
	.kartica img,
	.rad-item img {
		height: 130px;
	}
	.dugme-kartica {
		font-size: 12.5px;
		padding: 7px 14px;
	}
	.red-spec {
		padding: 12px 18px;
	}
	.specifikacije-section h2 {
		font-size: 22px;
	}
}

/* Tableti (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	.hero-section {
		padding: 50px 20px;
	}
	.hero-section h1 {
		font-size: 30px;
	}
	.hero-section p,
	.hero-section blockquote,
	.info-section,
	.gde-se-koristi p,
	.lista-lvt,
	.spec-naslov,
	.spec-vrednost {
		font-size: 14px;
	}
	.kartica img,
	.rad-item img {
		height: 150px;
	}
	.dugme-kartica {
		font-size: 13px;
		padding: 8px 16px;
	}
	.red-spec {
		padding: 12px 20px;
	}
	.specifikacije-section h2 {
		font-size: 24px;
	}
}

/* Desktop (1025px i više) */
@media (min-width: 1025px) {
	.hero-section {
		padding: 60px 20px;
	}
	.hero-section h1 {
		font-size: 32px;
	}
	.hero-section p {
		font-size: 16px;
	}
	.hero-section blockquote {
		font-size: 14px;
	}
	.info-section,
	.gde-se-koristi p,
	.lista-lvt,
	.spec-naslov,
	.spec-vrednost {
		font-size: 14px;
	}
	.kartica img,
	.rad-item img {
		height: 160px;
	}
	.dugme-kartica {
		font-size: 14px;
		padding: 8px 16px;
	}
	.red-spec {
		padding: 12px 18px;
	}
	.specifikacije-section h2 {
		font-size: 24px;
	}
}
