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;
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: 80px 20px 60px;
	color: #4b2e1d;
	position: relative;
	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;
}

@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 - identično kao brodski pod */
.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);
}

.cena-napomena {
	text-align: center;
	font-size: 14px;
	font-style: italic;
	margin-top: 30px;
	color: #666;
}

.contact-info {
	text-align: center;
	margin-top: 40px;
	font-size: 14px;
	color: #0a0a0a;
	font-weight: bold;
}

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

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

/* Tableti: 768px - 991px */
@media (max-width: 991px) {
	.hero-section h1 {
		font-size: 32px;
	}
	.kartica {
		width: 45%;
	}
}

/* Telefoni do 768px */
@media (max-width: 768px) {
	.hero-section {
		padding: 40px 10px;
	}
	.hero-section h1 {
		font-size: 26px;
	}
	.hero-section p {
		font-size: 14px;
	}
	.kartice-section {
		flex-direction: column;
		align-items: center;
		padding: 20px 10px;
	}
	.kartica {
		width: 90%;
	}
	.kartica img {
		height: 140px;
	}
	.kartica h2 {
		font-size: 18px;
	}
	.kartica p {
		font-size: 13px;
	}
	.dugme-kartica {
		font-size: 13px;
		padding: 7px 14px;
	}
}

/* Mali telefoni do 480px */
@media (max-width: 480px) {
	.hero-section h1 {
		font-size: 22px;
	}
	.hero-section p {
		font-size: 13px;
	}
	.kartica img {
		height: 120px;
	}
	.dugme-kartica {
		font-size: 12px;
		padding: 6px 12px;
	}
}

/* Veliki desktop 1200px+ */
@media (min-width: 1200px) {
	.kartice-section {
		max-width: 1400px;
		margin: auto;
	}
}
