* body
 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}
h1{
  color: #eaff00;
  font-family:'Times New Roman', Times, serif;
  font-size: 40px;
}

body{
  background-image: url('image/bk1.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  height: 1020px; /* اطمینان از اینکه تصویر نمایش داده شود */
  position: absolute;
  top: 0;
  left: 0;
}
header {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 10px 20px; /* پدینگ کمتر */
  height: 60px; /* ارتفاع ثابت */
  display: flex;
  align-items: center; /* متن در وسط هدر */
  justify-content: center; /* متن وسط چین افقی */
  overflow: hidden; /* جلوگیری از افزایش ارتفاع */
}


.icon-btn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: red;
  cursor: pointer; /* نشانگر موس تغییر می‌کند */
}

.main-content {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-image {
  position: relative;
}

.container {
  position: relative;
  min-height: 150vh; /* افزایش ارتفاع صفحه برای اسکرول */
}

.menu-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 30px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}


.menu-popup {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.2); /* رنگ سفید با کمی شفافیت */
  backdrop-filter: blur(1px); /* افکت شیشه‌ای */
  border-radius: 8px;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.menu-item {
  padding: 15px;
  margin: 10px;
  background-color: #ff4500;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  width: 200px;
}

.menu-item:hover {
  background-color: #d04a00; /* رنگ دکمه‌ها هنگام هاور */
}


/* تبلیغات زیر دکمه منو */
.advertisement {
  width: 90%;
  max-width: 800px;
  margin: 9px auto; /* فاصله از دکمه */
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.advertisement h2 {
  color: #d32f2f;
  font-size: 22px;
  margin-bottom: 10px;
}

.advertisement p {
  font-size: 16px;
  line-height: 1.6;
}

.advertisement ul {
  list-style: none;
  padding: 0;
}
h3{
  color: #d32f2f;
}

.advertisement ul li {
  font-weight: bold;
  color: #333;
  margin: 5px 0;
}

/* بخش مربوط به تصاویر در دو گوشه پایین */
.corner-images {
  
  position: fixed;
  bottom: 60px; /* فاصله از پایین */
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 80px; /* فاصله از دو طرف */
  pointer-events: none; /* جلوگیری از تأثیر روی کلیک دکمه‌ها */
}
.corner-images a {
  opacity: 0.8;
  pointer-events: auto; /* فعال کردن کلیک روی لینک‌ها */
}



/* استایل تصاویر دایره‌ای */
.corner-img {
  width: 80px;  /* اندازه عکس */
  height: 80px;
  border-radius: 50%; /* دایره‌ای شدن */
  object-fit: cover; /* نمایش مناسب عکس */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* سایه برای زیبایی */
}

/* فاصله بیشتر از کناره‌ها */
.corner-img.left {
  margin-left: 30px; /* فاصله از چپ */
}

.corner-img.right {
  margin-right: 30px; /* فاصله از راست */
}

@media (max-width: 768px) {
  img {
    width: 100%;
    height: auto;
  }
}






