/* فونت محلی */
@font-face {
  font-family: "IranianSans";
  src: url("../fonts/IranianSans.woff2") format("woff2"),
    url("../fonts/IranianSans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* بدنه و فونت اصلی */
body {
  font-family: "IranianSans", Tahoma, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  color: #fff;
  overflow-x: hidden;
  margin: 0;
}

/* افکت پس‌زمینه */
body::before {
  content: "";
  position: fixed;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  animation: bgMove 20s linear infinite;
  z-index: 0;
}

@keyframes bgMove {
  from {
    transform: translate(-10%, -10%);
  }
  to {
    transform: translate(-40%, -40%);
  }
}

.coming-soon {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  z-index: 1;
}

.logo {
  width: 120px;
  margin-bottom: 25px;
}

h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* تصاویر تیم */
.team-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.team-images img {
  width: 260px;
  height: 170px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  animation: float 4s ease-in-out infinite;
}

.team-images img:nth-child(2) {
  animation-delay: 0.5s;
}
.team-images img:nth-child(3) {
  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* تایمر */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown div {
  background: rgba(255, 255, 255, 0.18);
  padding: 20px 25px;
  border-radius: 18px;
  min-width: 90px;
  text-align: center;
}

.countdown span {
  font-size: 34px;
  display: block;
}

.footer-text {
  margin-top: 35px;
  font-size: 16px;
  opacity: 0.85;
}

/* ریسپانسیو */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  .subtitle {
    font-size: 16px;
  }
  .team-images img {
    width: 180px;
    height: 120px;
  }
  .countdown div {
    min-width: 70px;
    padding: 15px;
  }
}
