/* تنظیمات اولیه */
body {
  font-family: "Vazirmatn", sans-serif;
  direction: rtl;
  margin: 0;
  background: linear-gradient(135deg, #ff6f61aa, #ffc371aa), 
              url('https://images.unsplash.com/photo-1604908177520-b86cfae6e1c6?auto=format&fit=crop&w=1500');
  background-size: cover;
  backdrop-filter: blur(5px);
}

/* هدر شیشه‌ای */
.glass-header {
  backdrop-filter: blur(12px);
  background:rgba(255,255,255,0.15);
  padding:15px 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:10;
  border-bottom:1px solid rgba(255,255,255,0.2);
}

.logo-img{
  width:50px;
  margin-left:10px;
}

.logo-box{
  display:flex;
  align-items:center;
}

/* منو */
nav a{
  color:white;
  margin:0 12px;
  text-decoration:none;
  font-weight:bold;
}
nav a:hover{
  color:#ffd1c1;
  transition:0.4s;
}

/* کارت سبد خرید */
.cart{
  background:white;
  padding:7px 12px;
  border-radius:12px;
  box-shadow:0 3px 8px rgba(0,0,0,0.2);
}

/* بخش هیرو */
.hero{
  text-align:center;
  padding:90px 20px 70px;
  color:white;
}
.hero-btn{
  padding:12px 25px;
  background:#fff;
  border-radius:15px;
  font-weight:bold;
  display:inline-block;
  text-decoration:none;
  margin-top:15px;
}

/* عنوان بخش‌ها */
.section-title{
  font-size:28px;
  font-weight:700;
  margin:40px 0 15px;
  text-align:center;
}

/* فهرست غذا */
.food-list{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:25px;
}

.food-item{
  width:240px;
  background:white;
  border-radius:18px;
  padding:15px;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  transition:0.3s;
}
.food-item:hover{
  transform:translateY(-8px);
}

.food-item button{
  width:100%;
  padding:10px;
  background:#ff6f61;
  border:none;
  border-radius:10px;
  color:white;
  cursor:pointer;
  transition:0.3s;
}
.food-item button:hover{
  background:#ff5247;
}

/* فرم شیشه‌ای */
.glass-form{
  background:rgba(255,255,255,0.2);
  padding:20px;
  border-radius:15px;
  backdrop-filter:blur(12px);
  width:320px;
  margin:auto;
}

/* دکمه اصلی */
.submit-btn{
  background:#ff6f61;
  width:100%;
  padding:10px;
  border:none;
  border-radius:10px;
  color:white;
  cursor:pointer;
  font-size:16px;
}

/* فوتر */
footer{
  margin-top:50px;
  text-align:center;
  padding:15px;
  background:white;
}