body {
	font-family: "Segoe UI", sans-serif;
	margin: 0;
	padding: 0;
	background: linear-gradient(180deg, #fefcfb 0%, #faf6f0 100%);
	color: #2f2f2f;
	overflow-x: hidden;
}

/* HERO SEKCIJA */
.hero-ph {
	background: linear-gradient(135deg, #ffd9b3, #fff3e0);
	text-align: center;
	padding: 100px 20px 60px;
	color: #3a2d20;
	position: relative;
	box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.hero-ph h1 {
	font-size: 3.5rem;
	margin-top: 100px;
	margin-bottom: 20px;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
	animation: slideDown 1.2s ease;
}

@keyframes slideDown {
	from {
		transform: translateY(-40px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* INTRO TEKST */
.intro-ph {
	padding: 50px 30px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	margin: 40px auto;
	max-width: 1000px;
	animation: fadeIn 1.5s ease;
}

.intro-ph p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #555;
	text-align: center;
}

/* INFO BLOKOVI */
.info-ph {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	max-width: 1100px;
	margin: 60px auto;
	padding: 0 20px;
}

.features-ph,
.specs-ph {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	padding: 40px 30px;
	min-width: 300px;
	transition: transform 0.4s ease;
}

.features-ph:hover,
.specs-ph:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.features-ph h2,
.specs-ph h2 {
	font-size: 1.8rem;
	color: #3a2d20;
	margin-bottom: 20px;
	text-align: center;
}

.features-ph ul,
.specs-ph ul {
	list-style: disc;
	padding-left: 20px;
	line-height: 1.8;
	color: #555;
	font-size: 1.05rem;
}

/* MODELI - KARTICE */
.card-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	margin: 60px auto;
	max-width: 1200px;
	padding: 0 20px;
}

.card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	padding: 20px;
	text-align: center;
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.card::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.15) 0%,
		transparent 70%
	);
	transform: rotate(30deg);
	transition: all 0.7s ease;
}

.card:hover::before {
	transform: rotate(390deg);
}

.card:hover {
	transform: translateY(-12px) scale(1.04);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card img {
	width: 100%;
	border-radius: 12px;
	height: auto;
	transition: transform 0.5s ease;
}

.card:hover img {
	transform: scale(1.08);
}

.card h3 {
	margin: 15px 0 8px;
	font-size: 1.3rem;
	color: #4a3b2b;
}

.card p {
	color: #5e5e5e;
	font-weight: bold;
	font-size: 1.1rem;
}

/* CONTACT INFO */
.contact-info {
	text-align: center;
	margin-top: 60px;
	font-size: 16px;
	color: #4b2e1d;
	font-weight: bold;
}

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

.contact-info a:hover {
	color: #c13b65;
}

/* ZOOM - ostaje tvoj sistem */
.zoom-container {
	position: relative;
	cursor: zoom-in;
}

.zoom-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	padding: 5px;
	font-size: 20px;
	color: #4b2e1d;
	pointer-events: none;
}

.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
}

/* Telefoni vrlo mali (do 375px) */
@media (max-width: 375px) {
	.hero-ph {
		padding: 40px 10px;
	}
	.hero-ph h1 {
		font-size: 1.6rem;
		margin-top: 60px;
	}
	.intro-ph,
	.features-ph,
	.specs-ph,
	.models-ph {
		padding: 20px 10px;
	}
	.intro-ph p {
		font-size: 1rem;
	}
	.features-ph h2,
	.specs-ph h2,
	.models-ph h2 {
		font-size: 1.3rem;
	}
	.features-ph ul,
	.specs-ph ul {
		font-size: 0.95rem;
		line-height: 1.6;
	}
	.card-container {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.card {
		padding: 10px;
	}
	.card h3 {
		font-size: 1rem;
	}
	.card p {
		font-size: 0.85rem;
	}
	.contact-info {
		font-size: 12.5px;
	}
}

/* Telefoni standardni (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
	.hero-ph {
		padding: 45px 12px;
	}
	.hero-ph h1 {
		font-size: 1.8rem;
		margin-top: 70px;
	}
	.intro-ph,
	.features-ph,
	.specs-ph,
	.models-ph {
		padding: 20px 12px;
	}
	.intro-ph p {
		font-size: 1rem;
	}
	.features-ph h2,
	.specs-ph h2,
	.models-ph h2 {
		font-size: 1.4rem;
	}
	.features-ph ul,
	.specs-ph ul {
		font-size: 1rem;
		line-height: 1.6;
	}
	.card-container {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.card {
		padding: 12px;
	}
	.card h3 {
		font-size: 1.05rem;
	}
	.card p {
		font-size: 0.9rem;
	}
	.contact-info {
		font-size: 13px;
	}
}

/* Telefoni veći (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
	.hero-ph {
		padding: 50px 15px;
	}
	.hero-ph h1 {
		font-size: 2rem;
		margin-top: 80px;
	}
	.intro-ph,
	.features-ph,
	.specs-ph,
	.models-ph {
		padding: 25px 15px;
	}
	.intro-ph p {
		font-size: 1.05rem;
	}
	.features-ph h2,
	.specs-ph h2,
	.models-ph h2 {
		font-size: 1.5rem;
	}
	.features-ph ul,
	.specs-ph ul {
		font-size: 1rem;
	}
	.card-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.card {
		padding: 14px;
	}
	.card h3 {
		font-size: 1.1rem;
	}
	.card p {
		font-size: 1rem;
	}
	.contact-info {
		font-size: 13.5px;
	}
}

/* Tableti (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	.hero-ph {
		padding: 60px 20px;
	}
	.hero-ph h1 {
		font-size: 2.2rem;
		margin-top: 100px;
	}
	.intro-ph,
	.features-ph,
	.specs-ph,
	.models-ph {
		padding: 30px 20px;
	}
	.intro-ph p {
		font-size: 1.1rem;
	}
	.features-ph h2,
	.specs-ph h2,
	.models-ph h2 {
		font-size: 1.6rem;
	}
	.features-ph ul,
	.specs-ph ul {
		font-size: 1.05rem;
	}
	.card-container {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 18px;
	}
	.card {
		padding: 15px;
	}
	.card h3 {
		font-size: 1.15rem;
	}
	.card p {
		font-size: 1rem;
	}
	.contact-info {
		font-size: 14px;
	}
}

/* Desktop (1025px i više) */
@media (min-width: 1025px) {
	.hero-ph {
		padding: 60px 20px;
	}
	.hero-ph h1 {
		font-size: 2.5rem;
		margin-top: 130px;
	}
	.intro-ph,
	.features-ph,
	.specs-ph,
	.models-ph {
		padding: 40px 20px;
	}
	.intro-ph p {
		font-size: 1.1rem;
	}
	.features-ph h2,
	.specs-ph h2,
	.models-ph h2 {
		font-size: 1.6rem;
	}
	.features-ph ul,
	.specs-ph ul {
		font-size: 1.1rem;
	}
	.card-container {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
		gap: 20px;
	}
	.card {
		padding: 15px;
	}
	.card h3 {
		font-size: 1.1rem;
	}
	.card p {
		font-size: 1rem;
	}
	.contact-info {
		font-size: 14px;
	}
}
