.menu-grid, .food-grid {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 10px;
    justify-items: center;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .food-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}


.food-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    max-width: 220px; 
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease;
}

.food-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.food-card:hover img {
    transform: scale(1.03);
}


.food-card-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.food-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px; 
    font-weight: 700;
    color: #333;
    margin: 6px 0 3px 0;
    text-align: center;
}

.food-card p {
    font-family: 'Lato', sans-serif;
    font-size: 13px; 
    color: #666;
    margin-bottom: 6px;
    text-align: center;
}

.food-card .price {
    font-size: 16px;
    font-weight: 700;
    color: #f7941d;
    margin-bottom: 10px;
}

.food-card .order-button {
    background-color: #f7941d;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.food-card .order-button:hover {
    background-color: #e0871a;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}


@media (max-width: 768px) {
    .food-card {
        max-width: 180px;
    }
    .food-card img {
        height: 120px;
    }
    .food-card h3 {
        font-size: 14px;
    }
    
    .menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
}

.menu-tabs img {
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-tabs img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

    .food-card p, .food-card .price, .food-card .order-button {
        font-size: 12px;
    }
    .food-card .order-button {
        padding: 6px 14px;
    }
}

/* 🔹 Linklerin mavi focus çerçevesini gizle */
a:focus {
  outline: none;
}

/* 🔹 Menü sekmeleri */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
}

.menu-tabs img {
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-tabs img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.menu-tabs img {
  height: 200px !important;  /* masaüstü */
  width: 150px !important;
  margin: 0 auto !important;
  border-radius: 12px !important;
  object-fit: cover !important;
}

/* 📱 Mobil */
@media (max-width: 768px) {
  .menu-tabs img {
    height: 120px !important;
    width: 90px !important;
  }
}


/* 📱 Mobil - slider tarzı */
@media (max-width: 768px) {
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 15px;
    scroll-snap-type: x mandatory;
  }

  .menu-tabs a {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .menu-tabs img {
    height: 120px;   /* 🔹 Mobilde daha küçük */
    width: 90px;
    border-radius: 10px;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }
}


@media (max-width: 768px) {
  .menu-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    gap: 12px !important;
    padding: 10px 15px !important;
    scroll-snap-type: x mandatory !important;
  }

  .menu-tabs a {
    flex: 0 0 auto !important;
    scroll-snap-align: center !important;
  }

  .menu-tabs img {
    height: 120px !important;
    width: 90px !important;
    border-radius: 10px !important;
  }

  /* Scroll bar gizle */
  .menu-tabs::-webkit-scrollbar {
    display: none !important;
  }
}




