/* === CSS sa potpunom responzivnošću i mobilnim menijem === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--green-bg: #0f4d3a;
	--cream: #f6efe6;
	--orange: #f47c2c;
	--orange-dark: #e46516;
	--text-dark: #3a2a1f;
	--card-bg: #fff7ef;
	--brown-dark: #4d3f32;
	--brown-light: #fdeee9;
}

#wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 16px 32px;
}

/* === responzivni header sa hamburger menijem === */
header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 0px;
	gap: 10px;
}

.logo {
	flex: 0 0 auto;
	max-width: 160px;
}

.logo img {
	width: 100%;
	height: auto;
	display: block;
}

/* navigacija desktop */
.desktop-nav {
	display: flex;
	background: #fdeee9;
	padding: 10px 16px;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(150, 90, 60, 0.1);
	flex-wrap: wrap;
}

.desktop-nav a {
	padding: 10px 18px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	color: #4d3f32;
	border-radius: 3px;
	transition: 0.2s;
	white-space: nowrap;
}

.desktop-nav a:hover {
	background: #4d3f32;
	color: #fdeee9;
}

/* mobilni meni (sakriven na desktopu) */
.mobile-menu-toggle {
	display: none;
	font-size: 2rem;
	background: none;
	border: none;
	color: var(--orange);
	cursor: pointer;
	padding: 8px 12px;
}

.mobile-nav {
	display: none;
	width: 100%;
	height: 100vh;
	flex-direction: column;
	background: #fffbf8;

	padding: 16px 8px;
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid #ffe7d9;
}

.mobile-nav a {
	padding: 16px 24px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.3rem;
	color: #4d3f32;
	border-bottom: 1px solid #fee4d7;
	text-align: center;
}
.mobile-nav a:last-child {
	border-bottom: none;
}

/* HERO slider */
.hero {
	margin: 16px 0 24px;
}
.slider {
	position: relative;
	width: 100%;
	aspect-ratio: 24 / 9;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.slides {
	display: flex;
	height: 100%;
	transition: transform 0.4s ease;
}
.slides img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	flex: 0 0 100%;
}
.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	color: white;

	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
	transition: 0.2s;
	z-index: 10;
}
.slider-btn:hover {
}
.prev {
	left: 12px;
}
.next {
	right: 12px;
}
.slider-btn span {
	line-height: 1;
}

/* naslovi sekcija */
h3.naslov {
	text-align: center;
	font-size: clamp(28px, 6vw, 40px);
	margin: 60px 0 20px;
	font-weight: 600;
	color: #2f2219;
	letter-spacing: -0.3px;
}

/* grid kartica – mobilno jedan stub, desktop dva */
.grid {
	display: grid;

	gap: 24px;
	margin-bottom: 30px;
}

.card {
	background: linear-gradient(145deg, #ffede2, #ffe4d4);
	border-radius: 36px;
	padding: 24px 18px;

	box-shadow: 0 18px 30px rgba(110, 70, 40, 0.12);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.col-half,
.col-two-third,
.col-one-third {
	width: 50%;
}
.col-two-third {
	width: 60%;
}
.col-one-third {
	width: 40%;
}

.food-img {
	width: 95%;
	margin: 0 auto;
}
.food-img img {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 8px 12px rgba(80, 40, 10, 0.2));
}

.card h3 {
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 700;
	margin-bottom: 6px;
}
.card p {
	color: #7a5e4a;
	font-size: 0.95rem;
	margin-bottom: 12px;
}
.card .add {
	display: inline-block;
	background: var(--orange);
	color: white;
	padding: 8px 16px;
	border-radius: 60px;
	font-weight: 700;
	font-size: 1.25rem;
}

/* Cene burgera - responsive tri na desktop, dva na manjem */
.burgerPrice {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px 20px;
	margin: 30px auto;
}
.col-third {
	flex: 1 1 160px;
	max-width: 200px;
	text-align: center;
}
.col-third img {
	width: 100%;
	max-width: 140px;
	margin: 0 auto 12px;
}
h6 {
	font-size: 1.2rem;
	font-weight: 600;
}

/* Lokacija deo – flex na mobilnom */
.location-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	background: #2b1a13;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 25px 40px rgba(0, 0, 0, 0.25);
	margin: 40px 0;
}
.location-box {
	padding: 32px 28px;
	flex: 1 1 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#map {
	flex: 1 1 400px;
	min-height: 340px;
	background: #c9b6a2;
}
.location-box h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #ffdcc4;
}
.loc-item {
	display: flex;
	gap: 15px;
	margin-bottom: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.location-btn {
	margin-top: 24px;
	background: var(--orange);
	padding: 16px 22px;
	border-radius: 60px;
	width: fit-content;
	text-decoration: none;
	color: white;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: 0.2s;
}
.location-btn:hover {
	background: #e8762b;
}

/* === RESPONSIVE ZA MOBILNI === */
@media (max-width: 760px) {
	.grid {
		max-width: 760px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 24px;
	}
	#wrapper {
		padding: 8px 12px;
	}
	.desktop-nav {
		display: none;
	}
	.mobile-menu-toggle {
		display: block;
	}

	.mobile-nav.show {
		display: flex;
	}

	.card {
		flex-direction: row;
		padding: 18px 12px;
	}
	.col-half,
	.col-two-third,
	.col-one-third {
		width: 50%;
	}
	.card h3 {
		font-size: 1.4rem;
	}
	.card p {
		font-size: 0.85rem;
	}

	.slider {
		aspect-ratio: 3/2;
	}
	.slider-btn {
		width: 44px;
		height: 44px;
		font-size: 1.5rem;
	}

	.location-box {
		padding: 24px;
	}
	.location-box h2 {
		font-size: 1.8rem;
	}
	.loc-item {
		gap: 12px;
	}
}

@media (max-width: 480px) {
	.card h3 {
		font-size: 1.2rem;
	}
	.card .add {
		font-size: 1rem;
		padding: 6px 12px;
	}
	.card p {
		font-size: 0.75rem;
	}
	.col-third {
		flex-basis: 140px;
	}
	.slider-btn {
		width: 38px;
		height: 38px;
	}
}

/* čisti floats */
.clear {
	clear: both;
}
iframe {
	width: 100%;
	height: 100%;
	border: none;
}
/* mock mapa jer gmap ključ može biti osetljiv — koristimo sličnu podlogu */
#map {
	background: url("https://i.imgur.com/mapMock.png") center/cover no-repeat;
	background-color: #b7a48e;
	position: relative;
}
/* mali marker stil */

/* zadržavamo tvoj js za slider */
