:root {
	--theme-color: #ff7a00; /* turuncu ana renk */
}
html, body {
  transition: background-color 0.4s ease,
              color 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

body {
	font-family: "Poppins", sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* ---------- HEADER ---------- */
header {
	background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: white;
	text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

header .overlay {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 6rem 1rem;
}

.navbar{
	background-color: rgba(0, 0, 0, 0.5) !important;
}

.navbar-brand {
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--theme-color) !important;
}

/* ---------- KATEGORİLER ---------- */
.category-card {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	transition-duration: .2s;
}

.category-card:hover {
	transform: scale(1.03);
}

.category-img-wrapper {
	position: relative;
	overflow: hidden;
}

.category-img-wrapper img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	/*filter: blur(6px);*/ /* tüm resmi blur yapar */
	transform: scale(1.1); /* blur kenarlarını gizler */
}

.category-title-blur {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	backdrop-filter: blur(0px); /* yazı kısmı net kalacak */
	text-align: center;
}

.category-title-blur h3 {
	font-weight: 700;
	font-size: 1.5rem;
	color: white;
	letter-spacing: 1px;
	text-shadow: 0 0 10px rgba(0,0,0,0.6);
}


.category-title {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: rgba(0,0,0,0.55);
	color: #fff;
	text-align: center;
	padding: 0.5rem;
	font-weight: 500;
}

/* ---------- FOOTER ---------- */
footer {
	background: #222;
	color: #aaa;
	text-align: center;
	padding: 1rem 0;
	margin-top: auto;
	font-size: 0.9rem;
}

/* ---------- GARSON BUTONU ---------- */
.fab-garson {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1055;
	background: var(--theme-color);
	color: white;
	border: none;
	border-radius: 50%;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	transition: background 0.3s ease;
}

.fab-garson:hover {
	background: #e66a00;
}

/* ---------- DARK MODE TOGGLE ---------- */
.dark-toggle {
	cursor: pointer;
	border: none;
	background: transparent;
	color: white;
}

