:root {
  --primary-gold: #e6b31e; /* Altın Sarısı */
  --primary-orange: #d35400; /* Yanık Turuncu (Künefe) */
  --dark-overlay: rgba(0, 0, 0, 0.75);
  --primary-green: #2ecc71;
  --dark-green: #006400;
  --gold: #c5a059;
  --beige: #f3eacb;
  --beige-rgb: 243 234 203;
  --brown: #8b7d6b;
  --font-main: "Poppins", sans-serif;
  --font-title: "Playfair Display", serif;
  --font-script: "Great Vibes", cursive;
}

.body-index {
  /* Arka Plan Resmi: assets klasörüne 'cover.jpg' adında kaliteli bir künefe fotosu koy */
  background: url("../image/cover.jpg") no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  color: white;
  overflow: hidden; /* Scroll'u engelle */
}

/* Tüm ekranı kaplayan karartma katmanı */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-overlay);
  z-index: 0;
}

/* İçerik Kutusu (Glassmorphism) */
.welcome-card {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.05); /* Çok hafif beyazlık */
  backdrop-filter: blur(15px); /* Buzlu cam efekti */
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px 30px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  animation: fadeIn Up 1s ease-out;
}

/* Logo Alanı */
.logo-wrapper {
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-title {
  font-family: "Cinzel", serif; /* Şık, klasik bir font */
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.brand-slogan {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Dil Butonları */
.lang-switch {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
.lang-btn {
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.3);
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--primary-gold);
  color: black;
  border-color: var(--primary-gold);
  font-weight: bold;
}

/* Menü Butonu (CTA) */
.btn-start {
  border: none;
  background: var(--dark-green);
  color: var(--beige);
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  box-shadow: 0 5px 20px rgba(5, 170, 41, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-start:hover {
  transform: translateY(-3px);
  background: linear-gradient(to bottom, rgba(28, 161, 15, 0.616));
  color: var(--beige);
}
.btn-start:active {
  transform: scale(0.95);
}

/* Copyright Footer */
.footer-info {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  z-index: 10;
}
.footer-info a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 600;
}
.footer-info a:hover {
  color: var(--primary-gold);
}

/* Animasyon */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Menu.php CSS özellikleri*/
.body-menu {
  font-family: "Poppins", sans-serif;
  background-color: var(--beige);
  padding-bottom: 100px;
}
.app-navbar {
  background-image:
    linear-gradient(to bottom, rgba(0, 50, 0, 0.788)),
    url("../image/tema.webp"), linear-gradient(to bottom, rgb(0, 50, 0));

  background-size: auto 100%; /* Resmi alana yay */
  background-position: center; /* Ortala */
  background-repeat: round;

  border-bottom: 4px solid var(--gold);
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--beige);
  margin: 0;
}
.arrow-beige {
  color: var(--beige);
  transition: color 0.2s;
}
.btn-beige {
  background: var(--dark-green);
}

/* Kategori Kartı */
.category-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  background: white;
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: block;
}
.category-card:active {
  transform: scale(0.98);
}
.cat-img-wrapper {
  height: 150px;
  overflow: hidden;
  position: relative;
}
.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px 15px 10px;
}
.cat-title {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Ürün Kartı */
.product-card {
  background: white;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  border: 1px solid #eee;
}
.prod-img-box {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.prod-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-info {
  flex-grow: 1;
  padding-left: 15px;
}
.prod-price {
  color: #d35400;
  font-weight: bold;
  font-size: 1.1rem;
}
.btn-add {
  background: #27ae60;
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.btn-add:active {
  background: #219150;
  transform: scale(0.9);
}

/* Sepet Floating Button */
.fab-cart {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #d35400;
  color: white;
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 1050;
  transition: transform 0.2s;
}
.fab-cart:active {
  transform: scale(0.95);
}
.cart-count {
  background: white;
  color: #d35400;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
