:root {
	--green-bg: #0f4d3a;
	/* inspirisano drugom slikom */
	--cream: #f6efe6;
	--orange: #f47c2c;
	--orange-dark: #e46516;
	--text-dark: #3a2a1f;
	--card-bg: #fff7ef;
}
html {
	scroll-behavior: smooth;
}
* {
	box-sizing: border-box;
	font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
#menuToggle {
	z-index: 999999;
	position: absolute;
	right: 10px;
	top: 10px;
}
.fixed {
	position: fixed !important;
}
#mobileNav {
	top: 0px;
	z-index: 999998;
	position: fixed;
	left: 0;
}
body {
	margin: 0;

	background: url("../img/bg-orange.jpg");
	color: var(--text-dark);
	background-size: cover; /* Uvek pokrije ceo ekran */
	background-position: center; /* Centrirana */
	background-repeat: no-repeat; /* Bez ponavljanja */
	background-attachment: fixed; /* Opcionalno – daje smooth desktop efekat */
}

/* ===== HEADER ===== */
header {
	padding: 20px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
.container {
	max-width: 1240px;
	padding: 0;
	margin: 0 auto;
}
.logo {
	font-size: 26px;
	font-weight: 800;
	color: var(--orange);
}
nav {
	background: #fdeee9;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 4px 10px rgba(150, 90, 60, 0.12);
}
nav a {
	margin: 0;
	padding: 20px 10px;
	text-decoration: none;
	font-weight: 600;
	font-size: 17px;
	transition: all 0.3s ease;
	color: #4d3f32;
}
nav a:hover {
	background: #4d3f32;
	color: #fdeee9;
}
.order-btn {
	background: var(--orange);
	color: white;
	padding: 10px 18px;
	border-radius: 12px;
	font-weight: 700;
}

/* ===== HERO ===== */
.hero {
	margin: 30px auto;
	max-width: 1200px;
	border-radius: 32px;
	padding: 0px;
	margin-top: 0px;
}
.hero-placeholder img {
	border-radius: 32px;
}
.hero h1 {
	font-size: 42px;
	margin: 0 0 20px;
}

.price {
	display: inline-block;
	background: var(--orange);
	color: white;
	font-weight: 800;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 22px;
	margin: 20px 0;
}

.cta {
	display: inline-block;
	margin-top: 20px;
	background: var(--orange-dark);
	color: white;
	padding: 14px 26px;
	border-radius: 16px;
	font-weight: 700;
	text-decoration: none;
}

.hero-placeholder {
	width: 100%;
	border-radius: 24px;
}

/* ===== TABS ===== */
.tabs {
	display: flex;
	justify-content: center;
	margin: 40px 0 20px;
	gap: 16px;
}

.tab {
	padding: 12px 24px;
	border-radius: 14px;
	font-weight: 700;
	background: #e6d6c4;
	color: #5a4636;
}

.tab.active {
	background: var(--orange);
	color: white;
}

/* ===== GRID ===== */
.grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
	gap: 24px;
}

.card {
	background: linear-gradient(45deg, #ffdfce, #ffede2);
	border: 12px solid var(--card-bg);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.img-placeholder {
	width: 100%;
	height: 160px;
	border-radius: 18px;

	margin-bottom: 16px;
}

.card h3 {
	margin: 0 0 6px;
	font-size: 36px;
}
.food-img {
	width: 90%;
	margin: 0 auto;
}
.food-img img {
	width: 100%;
}
.card p {
	margin: 0 0 14px;
	color: #7a6a5a;
	font-size: 17px;
}

.card .add {
	display: inline-block;
	background: var(--orange);
	color: white;
	padding: 8px 16px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 20px;
}
.col-half {
	width: 50%;
	float: left;
}

.col-two-third {
	width: 60%;
	float: left;
}
.col-one-third {
	width: 40%;
	float: left;
}
.col-third {
	width: 33.333%;
	float: left;
}
.col-third img {
	width: 80%;
	display: block;
	margin: 0 auto;
}
.slider {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
	aspect-ratio: 24 / 9;
	border-radius: 16px; /* da shadow izgleda lepše */
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.slides {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease-in-out;
	border-radius: 32px;
}

.slides img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	flex: 0 0 100%;
	border-radius: 16px;
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 55px;
	height: 55px;
	border-radius: 50%;
	border: none;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 22px;
	color: #fff;

	background: linear-gradient(135deg, #ff3c00, #ff7a00);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);

	transition: all 0.1s ease;
	z-index: 10;
}

/* Pozicija */
.prev {
	left: 20px;
}
.next {
	right: 20px;
}

/* Hover efekat */
.slider-btn:hover {
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
	background: linear-gradient(135deg, #ff2a00, #ff9100);
}

/* Blur background efekat (lux feel) */
.slider-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;

	z-index: -1;
}
.desktopOnly {
	display: block;
}
.mobileOnly {
	display: none;
}
/* Mobile manja dugmad */
@media (max-width: 768px) {
	.slider {
		aspect-ratio: 3 / 2;
	}

	.desktopOnly {
		display: none;
	}
	.mobileOnly {
		display: block;
	}
	.col-resp {
		width: 100% !important;
		float: none;
	}
	#wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}
	.slider-btn {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
}
h3.naslov {
	text-align: center;
	font-size: 30px;
}
.one-fifth-column {
	width: 20%;
	float: left;
}
.one-fifth-column img {
	width: 100%;
}
h6 {
	font-size: 20px;
	margin-top: 10px;
}
.center-text {
	text-align: center;
}
.location {
	background: #4a2f22;
}
.loc-div {
	height: 400px;
}
#map {
	width: 100%;
	height: 400px;
	border-radius: 0px;
}
.location-box {
	background: linear-gradient(135deg, #ffdcc4, #ffdcc4);
	color: #4a2f22;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.location-box h2 {
	font-size: 32px;
	margin-bottom: 25px;
	font-weight: 800;
	color: #4a2f22;
}

.location-box h2 i {
	margin-right: 10px;
}

.loc-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 18px;
	font-size: 18px;
}

.loc-item i,
.loc-item span {
	color: #4a2f22;
	font-size: 18px;
	margin-top: 3px;
}

.location-btn {
	margin-top: 25px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--orange);
	padding: 15px 22px;
	border-radius: 5px;
	font-weight: 500;
	width: 280px;
	text-decoration: none;
	color: #fff;
	font-size: 15px;
	transition: all 0.2s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.location-btn:hover {
	background: #e0742c;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
/* ===== FOOTER ===== */

.footer {
	background: linear-gradient(135deg, #2b1a13, #4a2f22);
	color: #fff;
	margin-top: 60px;
	padding-top: 50px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	padding: 0 20px 40px;
}

.footer-col h4 {
	font-size: 20px;
	margin-bottom: 20px;
	margin-top: 40px;
	color: var(--orange);
	font-weight: 700;
}

.footer-col p {
	font-size: 15px;
	margin-bottom: 12px;
	color: #ffdcc4;
}

.footer-col a {
	display: block;
	text-decoration: none;
	color: #ffdcc4;
	margin-bottom: 10px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.socials {
	display: flex;
	gap: 15px;
	margin-top: 10px;
}

.socials a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s ease;
}

.socials a:hover {
	background: #ff9a4d;
}

.footer-bottom {
	text-align: center;
	padding: 20px;
	font-size: 14px;
	background: rgba(0, 0, 0, 0.25);
	color: #ffdcc4;
}
.audit-table-pro thead {
	background: #f9fafb;
}
.audit-table-pro tbody tr {
	transition: background 0.2s ease;
}
