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;
}
.laminat-section {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	padding: 40px 30px;
	max-width: 1000px;
	margin: 40px auto;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.laminat-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.laminat-section h2 {
	color: #4b2e1d;
	font-size: 28px;
	margin-bottom: 15px;
	text-align: center;
	position: relative;
}

.laminat-section h2::after {
	content: "";
	width: 60px;
	height: 4px;
	background: #a0794c;
	display: block;
	margin: 10px auto 0;
	border-radius: 2px;
}

.laminat-section p {
	color: #555;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 30px;
	text-align: justify;
}

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

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

/* NASLOVI SEKCIJA */
.section-title {
	font-size: 32px;
	color: #4b2e1d;
	margin: 50px 0 30px 0;
	text-align: center;
	position: relative;
}

.section-title::after {
	content: "";
	width: 80px;
	height: 4px;
	background: #a0794c;
	display: block;
	margin: 15px auto 0;
	border-radius: 2px;
}

/* 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 SA TRI BLOKA */
.info-sekcije {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	padding: 50px 20px;
	background: #faf9f7;
}

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

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

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

.kolona ul {
	list-style: none;
	padding-left: 0;
}

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

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

/* Paragrafi */
p {
	font-size: 16px;
	color: #555;
	line-height: 1.7;
	max-width: 800px;
	margin: 0 auto 40px;
	padding: 0 20px;
}

/* Telefoni vrlo mali (do 375px) */
@media (max-width: 375px) {
	.hero-section {
		padding: 40px 8px 20px;
	}
	.hero-section h1 {
		font-size: 20px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 12px;
	}
	.kartice-section {
		gap: 12px;
	}
	.kartica {
		width: 95%;
		padding: 15px;
	}
	.kartica img {
		height: 130px;
	}
	.kartica h2 {
		font-size: 14px;
	}
	.kartica p {
		font-size: 12px;
	}
	.dugme-kartica {
		font-size: 11.5px;
		padding: 6px 10px;
	}
	.section-title {
		font-size: 24px;
	}
	.info-sekcije {
		flex-direction: column;
		padding: 0 10px;
	}
	.kolona {
		padding: 15px;
	}
	.kolona h2 {
		font-size: 16px;
	}
	.kolona ul {
		padding-left: 15px;
	}
	.kolona li {
		font-size: 13px;
	}
	p {
		font-size: 14px;
		padding: 0 10px;
	}
}

/* Telefoni standardni (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
	.hero-section {
		padding: 45px 10px 25px;
	}
	.hero-section h1 {
		font-size: 22px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 13px;
	}
	.kartice-section {
		gap: 14px;
	}
	.kartica {
		width: 95%;
		padding: 16px;
	}
	.kartica img {
		height: 140px;
	}
	.kartica h2 {
		font-size: 15px;
	}
	.kartica p {
		font-size: 12.5px;
	}
	.dugme-kartica {
		font-size: 12px;
		padding: 6px 12px;
	}
	.section-title {
		font-size: 26px;
	}
	.info-sekcije {
		flex-direction: column;
		padding: 0 12px;
	}
	.kolona {
		padding: 16px;
	}
	.kolona h2 {
		font-size: 17px;
	}
	.kolona ul {
		padding-left: 18px;
	}
	.kolona li {
		font-size: 13.5px;
	}
	p {
		font-size: 15px;
		padding: 0 12px;
	}
}

/* Telefoni veći (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
	.hero-section {
		padding: 50px 12px 30px;
	}
	.hero-section h1 {
		font-size: 24px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 14px;
	}
	.kartica {
		width: 90%;
	}
	.kartica img {
		height: 150px;
	}
	.kartica h2 {
		font-size: 16px;
	}
	.kartica p {
		font-size: 13px;
	}
	.dugme-kartica {
		font-size: 13px;
		padding: 7px 14px;
	}
	.section-title {
		font-size: 28px;
	}
	.info-sekcije {
		flex-direction: column;
		padding: 0 15px;
	}
	.kolona {
		padding: 18px;
	}
	.kolona h2 {
		font-size: 18px;
	}
	p {
		font-size: 15.5px;
	}
}

/* Tableti (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	.hero-section {
		padding: 60px 15px 35px;
	}
	.hero-section h1 {
		font-size: 30px;
	}
	.hero-section p,
	.hero-section blockquote {
		font-size: 15px;
	}
	.kartica {
		width: 220px;
	}
	.kartica img {
		height: 150px;
	}
	.kartica h2 {
		font-size: 18px;
	}
	.kartica p {
		font-size: 14px;
	}
	.dugme-kartica {
		font-size: 14px;
		padding: 8px 16px;
	}
	.section-title {
		font-size: 32px;
	}
	.info-sekcije {
		flex-direction: row;
		padding: 0 20px;
	}
	.kolona h2 {
		font-size: 19px;
	}
	p {
		font-size: 16px;
	}
}

/* Desktop (1025px i više) */
@media (min-width: 1025px) {
	.hero-section {
		padding: 90px 15px 50px;
	}
	.hero-section h1 {
		font-size: 36px;
	}
	.hero-section p {
		font-size: 15px;
	}
	.hero-section blockquote {
		font-size: 14px;
	}
	.kartica {
		width: 220px;
	}
	.kartica img {
		height: 150px;
	}
	.kartica h2 {
		font-size: 18px;
	}
	.kartica p {
		font-size: 14px;
	}
	.dugme-kartica {
		font-size: 14px;
		padding: 8px 16px;
	}
	.section-title {
		font-size: 32px;
	}
	.info-sekcije {
		flex-direction: row;
		padding: 0 20px;
	}
	.kolona h2 {
		font-size: 20px;
	}
	p {
		font-size: 16px;
	}
}
