* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
  color: #fff;
}

/* پس زمینه لوگو */

.with-logo {
  background:
    linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.88)),
    url("../image/logo.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}

/* صفحه اول */

.home-page {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-center {
  width: 100%;
}

.home-title {
  font-size: 34px;
  color: #d4af37;
  margin-bottom: 40px;
}

.home-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 40px;
  background: linear-gradient(145deg, #ffb347, #ff8c00);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
}

.home-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.contact-btn {
  padding: 8px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
}

/* صفحه دوم */

.menu-page {
  text-align: center;
  padding-top: 100px;
}

.menu-title {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 50px;
}

.menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.menu-btn {
  width: 260px;
  padding: 15px;
  border-radius: 40px;
  background: linear-gradient(145deg, #ffb347, #ff8c00);
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

/* آیتم‌ها */

.page-title {
  text-align: center;
  margin: 40px 0;
  color: #d4af37;
}

.section-title {
  text-align: center;
  margin: 40px 0 20px;
  color: #d4af37;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  justify-content: center;
  gap: 20px;
  padding-bottom: 40px;
}

.food-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  overflow: hidden;
  width: 200px;
}

.food-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.food-info {
  padding: 10px;
  text-align: center;
}

.food-info h3 {
  font-size: 14px;
  margin: 5px 0;
}

.food-info p {
  font-size: 14px;
  margin: 0;
  color: #ffb347;
  font-weight: bold;
}

.back-button {
  display: block;
  width: fit-content;
  margin: 40px auto;
  padding: 10px 24px;
  border-radius: 30px;
  background: linear-gradient(145deg, #ffb347, #ff8c00);
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
/* =========================
   افکت دکمه‌های منو
========================= */

.menu-btn,
.home-btn,
.back-button {
  transition: all 0.3s ease;
}

.menu-btn:hover,
.home-btn:hover,
.back-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,140,0,0.6);
}

/* =========================
   افکت کارت غذاها
========================= */

.food-card {
  transition: all 0.3s ease;
}

.food-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255,140,0,0.4);
}
/* =========================
   افکت ویژه دکمه تماس صفحه اول
========================= */

.home-contacts .contact-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.home-contacts .contact-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* نور ردشونده */

.home-contacts .contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: 0.6s;
}

.home-contacts .contact-btn:hover::before {
  left: 120%;
}
/* =========================
   تماس پایین صفحات منو
========================= */

.menu-contacts {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
  flex-wrap: wrap;
}
/* =========================
   افکت نور دکمه‌های تماس در همه صفحات
========================= */

.menu-contacts .contact-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.menu-contacts .contact-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* نور ردشونده */

.menu-contacts .contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: 0.6s;
}

.menu-contacts .contact-btn:hover::before {
  left: 120%;
}