* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fffdfd;
  color: #333;
}

header {
  padding: 0px 40px;
  background: #f7dada66;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

nav a {
  color: black;
  margin-left: 20px;
  text-decoration: none;
  font-size: 1em;
}

nav a:hover {
  text-decoration: underline;
}

.section {
  padding: 40px 20px;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.menu-item {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background: #fff3ef;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.menu-item:hover {
  transform: scale(1.02);
}

.menu-item h3 {
  margin-bottom: 10px;
}

.menu-item p {
  margin-bottom: 8px;
}

.order-btn {
  background-color: #ff6347;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  margin-top: 10px;
}

.order-btn:hover {
  background-color: #e5533d;
}

/* Slideshow */
/* .slideshow-container {
  position: relative;
  max-width: 600px;
  margin: 30px auto;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.5);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
} */

#menu-container img {
  width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.social-media {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  margin-left: 570px;
}

.slider {
  width: 80%;
  max-width: 800px;
  overflow: hidden;
  margin: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
  margin-top: 20px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.nav button {
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.paragraph {
  text-align: justify;
  margin-left: 200px;
  margin-right: 200px;
  margin-top: 25px;
}

.home {
  font-size: 12px;

  font-weight: bold;
}