@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Quicksand:wght@400;600&display=swap');

:root{
  --bgColor:#fffaf7;
  --textColor:#5e4b47;
  --linkColor:#d46a92;
  --logoColor:#d46a92;
  --footerColor:#7d4f50;
}
/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--bgColor);
  color: var(--textColor);
}
a {
  color: var(--linkColor);
  text-decoration: none;
}
nav{
  width:100%;
  height:30px;
  display:flex;
  justify-content:space-evenly;
  align-items:center;
}
nav a:hover{
  color:black;
  font-weight:bold;
}
.menu-header {
  background: linear-gradient(to right, #ffe6e6, #e6fff5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: var(--logoColor);
}

.menu-header nav a {
  margin-left: 20px;
  font-size: 1rem;
  font-weight: bold;
}

.menu-hero {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #fff0f3;
}

.menu-hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  color: #b76e79;
  margin-bottom: 10px;
}

.menu-hero p {
  font-size: 1.1rem;
  color: #6b4e4f;
}

.menu-category {
  padding: 50px 20px;
  background-color: #fefaf1;
  text-align: center;
}

.menu-category h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #c26c8d;
  margin-bottom: 30px;
}

.menu-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.item-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 20px;
  width: 280px;
  text-align: center;
}

.item-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.item-card h3 {
  color: #b76e79;
  margin-bottom: 8px;
}

.item-card p {
  font-size: 0.95rem;
  color: #6b4e4f;
  margin-bottom: 8px;
}

.item-card span {
  font-weight: bold;
  color: #a65a68;
}
.footer {
  background-color: #fddde6;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: var(--footerColor);
}
