body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background-image: url('./index-pictures/body-background.jpeg');
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}

.header {
  background: url('./index-pictures/index-header.jpg') no-repeat center center/cover;
  padding: 10px;
  text-align: left;
  padding-left: 100px;
  padding-top: 50px;
  padding-bottom: 100px;
}

a {
  color: #ffffff85;
  text-decoration: none;
  margin-right: 50px;
}

a:hover {
  color: #ffd900;
}

.header-content h1 {
  font-family: 'Ruwudu', sans-serif;
  font-size: 2cm;
  color: white;
}

.header-content p {
  font-size: 17px;
  color: white;
}

.menu-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  margin-top: -100px;
  justify-content: center;   /* آیتم‌ها وسط چین بشن */
  align-items: start;        /* همه از بالا شروع بشن */
}

.menu-item {
  text-align: center;
  background-color: #441f004f;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;  /* محتوا وسط بلوک بمونه */
}

.menu-image img {
  margin: 15px auto;
  text-align: center;
  max-width: 170px;
  max-height: 170px;
  border-radius: 100%;
  transition: transform 0.3s ease-in-out;
}

.menu-image img:hover {
  transform: scale(1.1);
}

.menu-item h2 {
  margin-top: 15px;
  font-weight: 500;
  color: #fffffff1;
}

.menu-item p {
  margin-top: 15px;
  font-size: 17px;
  font-weight: 500;
  color: #fffffff1;
}
