body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	transition: background-color 0.5s ease;
}

/* HEADER */
header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
	height: 170px;
	padding: 0;
	background-color: #0f5f0d;
	background-image: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	transition: all 0.5s ease;
}

/* LOGO STIL */
.logo {
	font-family: "Cinzel", serif;
	position: relative;
	display: block;
	text-align: center;
	margin: 12px auto 35px auto;
	width: max-content;
	line-height: 1;
	transform: translateY(0);
	transition: transform 0.6s ease;
}
.logo:hover {
	transform: translateY(-5px);
}
.logo a {
	text-decoration: none;
	color: black;
	font-family: "Playfair Display", serif;
	transition: color 0.3s ease;
}

.logo .gore {
	font-size: 46px;
	color: #f1f1f1;
	letter-spacing: 5px;
	font-weight: 600;
	animation: textGlow 3s ease-in-out infinite;
}

.logo .dole {
	font-size: 18px;
	color: #f1f1f1;
	position: absolute;
	right: 0;
	bottom: -22px;
	letter-spacing: 5px;
	animation: textGlow 3s ease-in-out infinite;
}
.logo .gore,
.logo .dole {
	text-shadow: 0 1px 3px rgb(30, 0, 255), 0 0 1px rgb(0, 30, 255);
}

/* Sitna animacija sjaja na logu */
@keyframes textGlow {
	0%,
	100% {
		text-shadow: 0 1px 3px rgb(30, 0, 255), 0 0 1px rgb(0, 30, 255);
	}
	50% {
		text-shadow: 0 1px 5px rgb(0, 30, 255), 0 0 10px rgb(30, 0, 255);
	}
}

/* NAV BACKGROUND */
.pozadina-panj {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -49%) scale(0.8);
	height: auto;
	width: auto;
	max-height: 200%;
	max-width: none;
	z-index: -1;
	object-fit: contain;
	pointer-events: none;
	clip-path: inset(0 0 20% 0);
	transition: transform 0.8s ease;
}
.pozadina-panj:hover {
	transform: translate(-50%, -49%) scale(0.82);
}

header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: -1;
}

/* GOLD BUTTON */
.gold-button {
	background: linear-gradient(145deg, #ffd700, #ffcc00);
	color: #fff;
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 16px;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.gold-button:hover {
	background: linear-gradient(145deg, #ffcc00, #e6b800);
	color: #fff;
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8);
	transform: scale(1.08);
}

/* LEVA STRANA NAVIGACIJE */
.nav-left {
	flex: 1;
	padding: 0 40px;
}

.nav-left .nav-links {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 10px;
}

.nav-left .nav-links li {
	margin-right: 20px;
}

.nav-left .nav-links a {
	color: #fff;
	text-decoration: none;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
	transition: all 0.3s ease;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.nav-left .nav-links a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 3px;
	bottom: -5px;
	left: 50%;
	background: #f39c12;
	transition: all 0.4s ease;
	transform: translateX(-50%);
}

.nav-left .nav-links a:hover::after {
	width: 100%;
}

.nav-left .nav-links a:hover {
	color: #f39c12;
	transform: translateY(-2px);
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* DESNA STRANA NAVIGACIJE */
.nav-right {
	flex: 2;
	display: flex;
	justify-content: space-around;
	padding: 0 20px;
}

.nav-right .nav-links {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 10px;
}

.nav-right .nav-links li {
	position: relative;
	margin-left: 15px;
}

.nav-right .nav-links a {
	color: #fff;
	text-decoration: none;
	font-size: 17px;
	font-weight: 600;
	position: relative;
	transition: all 0.3s ease;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.nav-right .nav-links a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 3px;
	bottom: -5px;
	left: 50%;
	background: #f39c12;
	transition: all 0.4s ease;
	transform: translateX(-50%);
}

.nav-right .nav-links a:hover::after {
	width: 100%;
}

.nav-right .nav-links a:hover {
	color: #f39c12;
	transform: translateY(-2px);
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* DROPDOWN MENIJI */
.nav-right .dropdown:hover .dropdown-menu {
	display: block;
	animation: fadeIn 0.4s ease;
}

.nav-right .dropdown .dropdown-menu {
	display: none;
	position: absolute;
	background-color: #2d3a24;
	top: 100%;
	left: 0;
	min-width: 140px;
	padding: 6px 0;
	list-style: none;
	margin: 0;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	z-index: 9999;
}

.nav-right .dropdown .dropdown-menu li a {
	color: #f4f4f4;
	font-size: 15px;
	font-weight: 500;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
	padding: 6px 12px;
	display: block;
	line-height: 1.3;
}

.nav-right .dropdown .dropdown-menu li a:hover {
	background-color: #f39c12;
	color: #fff;
	transform: translateX(5px);
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

/* Animacija fade-in za dropdown */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* MOBILNA NAVIGACIJA */
.mobile-nav-toggle {
	display: none;
	font-size: 28px;
	color: #fff;
	position: absolute;
	top: 12px;
	right: 20px;
	cursor: pointer;
	z-index: 10000;
}

.mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: rgba(45, 58, 36, 0.95);
	flex-direction: column;
	gap: 10px;
	padding: 20px 0;
	text-align: center;
	z-index: 9999;
}

.mobile-nav a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	padding: 10px;
	transition: color 0.3s ease;
}

.mobile-nav a:hover {
	color: #f39c12;
}

.mobile-nav.active {
	display: flex;
}

/* IKONICE */
.fas {
	font-size: 14px;
	margin-left: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.nav-left,
	.nav-right {
		display: none;
	}
	header {
		position: relative;
	}

	.logo {
		font-size: 28px;
		transform: none;
		text-align: center;
		margin-top: 10px;
	}

	.mobile-nav-toggle {
		display: block;
	}
}
/* Dugme stil */
