body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #fff8f4;
  color: #333;
}


.menu-category {
  padding: 30px 20px;
}

.menu-category h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.menu-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: scale(1.03);
}

.menu-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.menu-item h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color:#2c3e50;
}

.menu-item p {
  font-size: 0.95rem;
  padding: 0 10px 15px;
  color: #666;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
nav ul li a:hover {
  background-color: #364b61;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s;
}

.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 2rem 0;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  padding: 0 2rem;
  flex-wrap: wrap;
  
}

.footer-column {
  flex: 1;
  min-width: 250px;
}


.footer-links {
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
display:flex;
gap: 2rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #677e96;
}

.footer-column a {
  text-decoration: none;
  color: #ecf0f1;
}

.footer-column a:hover {
  color: #677e96;
}

.footer-bottom {
  text-align: center;
  background-color: #34495e;
  padding: 1rem;
  margin-top: 2rem;
}

.footer-bottom p {
  font-size: 1rem;
  color: #bdc3c7;
}

.main-services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 6rem;
  background-color: rgb(194, 72, 113);
  color: white;
  font-size: 1.5 rem;
}
.header {
  background-color: #2c3e50;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}
.header h1 {
  font-size: 2.5rem;
}