/* تنظیمات عمومی */
body {
  margin: 0;
  font-family: sans-serif;
  direction: rtl;
  background-color: #fff;
  overflow-x: hidden;
  height: 100%;
}

/* ساختار گرید */
.container {
  display: grid;
  grid-template-areas:
    "box9 slider box7"
    "box9 intro  box8"
    "box9 ovals  box8"
    "box9 social box8";
  grid-template-columns: 1fr 3fr 1fr;
  grid-template-rows: auto auto auto 1fr;
  gap: 10px;
  padding: 10px;
  min-height: calc(100vh - 60px);
  box-sizing: border-box;
  width: 90%;
  margin: 0 auto;
}

/* منوی موبایل */
.menu-container {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1100;
}

.menu-button {
  background-color: #444;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.menu-container {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1100;
}

.mobile-menu {
  position: fixed;
  top: 50px;
  right: 10px;
  width: 220px;
  background-color: #222;
  color: #fff;
  display: none;
  padding: 10px;
  z-index: 1000;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  padding: 10px;
  border-bottom: 1px solid #444;
}

.mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
}

.menu-image-box {
  margin-top: 10px;
}

.menu-image-box img {
  width: 100%;
  border-radius: 8px;
}

/* کادرهای سمت چپ و راست */
.box {
  border: 2px solid #00aaff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  width: 218px;
}

.side-box {
  background-color: #fefefe;
  width: 218px;
}

#box7, #box8 {
  height: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#box7, #box8 {
  height: auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#box9 {
  grid-area: box9;
  color: red;
  background-color: #d3e9ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}

/* اسلایدشو */
.header-slider {
  grid-area: slider;
  text-align: center;
}

.header-slider img {
  width: 100%;
  max-height: 300px;
  border-radius: 10px;
}

/* متن وسط */
.intro-text {
  grid-area: intro;
  background-color: #aee1f9;
  text-align: center;
  padding: 15px;
  font-size: 1.1em;
  border-radius: 10px;
  height: 50%;
}

/* بیضی‌ها */
.oval-section {
  grid-area: ovals;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}

.oval {
  width: 190px;
  height: 140px;
  border: 2px solid red;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
}

/* شبکه‌های اجتماعی */
.social-box {
  grid-area: social;
  background-color: #5a8bb5;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  height: 50%;
}

/* فوتر */
.footer {
  margin-top: 20px;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  border-top: 3px solid #555;
}
