/* Global Styles */
body {
  margin: 0;
  font-family: 'Vazirmatn', sans-serif;
  background-color: #82001a; /* Matched from image */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 1rem;
  box-sizing: border-box;
}

/* Container */
.container {
  max-width: 700px;
  width: 100%;
}

/* Logo Image */
.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

/* Coming Soon Text */
.coming-text {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Persian Subtitle */
.subtitle {
  font-size: 1.2rem;
  color: #f5f5f5;
  margin-bottom: 2rem;
  direction: rtl;
}

/* Icons */
.icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s;
}

.icons a:hover img {
  transform: scale(1.2);
}

/* Responsive Text and Logo */
@media (max-width: 480px) {
  .coming-text {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .logo {
    max-width: 150px;
  }
}
