/* پاکسازی */
body {
  margin: 0;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
/*
.background-gradient {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: radial-gradient(circle, #cacacc, #adadad);
  filter: blur(300px) opacity(0.7);
}
*/
/* ظرف کلی */
.logo-wrapper {
  height: 200px; /* کل لوگو + فاصله + متن */
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

/* لوگو با انیمیشن fade in */
.logo {
  max-width: 200px;
  width: 50vw;
  max-height: 200px;
  height: auto;
  display: block;
  object-fit: contain;

  opacity: 0;
  animation: fadeIn 3s ease forwards;
}

/* نوشته */
.text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
  
  opacity: 0;
  animation: fadeIn 3s ease forwards;
}

/* انیمیشن */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
