:root {
  --theme-color: #ff7a00;
}
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;
}


/* ÜRÜN KARTLARI */
.product-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 0.5rem;
  text-align: center;
}

/* 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;
}

/* MODAL FOTO */
.modal-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.5rem;
}

.badge {
  font-size: 0.85rem;
}