body{
    background:
    url("https://www.transparenttextures.com/patterns/food.png");
    background-color:  #ff9a9e;
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
}
header {
  text-align: center;
  padding: 40px 20px;
  color: white;
 
  background-color: #ff6b6b;
  position: relative;
  overflow: hidden;
}
header h1 {
  font-size: 40px;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
header p {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}
header::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -50px;
  left: -50px;
}

header::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
}
.menu{
    padding:20px;
    max-width: 800px;
    margin:auto;}
.menugrid{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  padding: 15px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(226, 74, 105, 0.5);
  transition: 0.3s;
  backdrop-filter: blur(10px);
}
.card:hover{
    transform:scale(1.03);
    box-shadow: 0 8px 20px rgba(226, 74, 105, 0.8)
;}
h2{
    color:#b55151;
}
h1 {
  letter-spacing: 2px;
}

h3 {
  margin-bottom: 5px;
}

p {
  font-size: 14px;
  color: #555;
}
img{width: 220px;
height:200px;
align-items: center;}
.card span {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: white;
  background: #ff6b6b;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
}
footer {
  text-align: center;
  padding: 15px;
  color: white;
  background: #ff6b6b;
  margin-top: 30px;
}
button {
  margin-top: 8px;
  padding: 6px 10px;
  border: none;
  background: transparent;
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
  border-radius: 15px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s;
}

button:hover {
  background: #ff6b6b;
  color: white;
}
