
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Readex Pro', sans-serif;
  background: #f6f1e7;
  margin: 0;
  direction: rtl;
  color: #2f2f2f;
  padding: 20px;
}

a {
    text-decoration: none;
}

.hero {
  text-align: center;
  padding: 40px 16px 20px;
}

.app-title {
  font-size: 36px;
  color: #2f5d57;
  margin-bottom: 20px;
}

.app-title span {
  display: block;
  font-size: 22px;
  color: #b08a3e;
}

.hero-banner {
    max-width: 900px;
    width: 100%;
    border-radius: 18px;
    margin: 20px auto 24px;
    display: block;

    /* Premium soft shadow */
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18),
        0 4px 10px rgba(0, 0, 0, 0.12);
}


.store-buttons a img {
  height: 70px;
  margin: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.store-buttons a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.card {
  background: #fff;
  margin: 20px auto;
  padding: 22px;
  max-width: 900px;
  border-radius: 14px;
  line-height: 1.9;
}

.card h2 {
  color: #2f5d57;
  margin-top: 0;
}

.features li {
  margin-bottom: 8px;
}

.disclaimer {
  max-width: 900px;
  margin: 30px auto;
  font-size: 14px;
  color: #555;
  text-align: center;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #555;
}

.title-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  background: rgba(255, 250, 240, 0.3);

  padding: 18px 32px;
  margin: 0 auto 40px;

  border-radius: 22px;

}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;

  box-shadow:
    0 8px 20px rgba(0,0,0,.18),
    0 3px 8px rgba(0,0,0,.12);
}

.app-title {
  margin: 0;
}


.social-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 35px 0;
    flex-wrap: wrap; /* important for mobile */
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 35px 0;
    flex-wrap: wrap;
}

/* merged final version */
.social-buttons img {
    height: 140px;              /* equal height for both */
    width: auto;                /* keep proportions */
    max-width: 100%;            /* responsive on small screens */
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.social-buttons img:hover {
    transform: translateY(6px); /* move downward on hover */
    box-shadow: 0 2px 8px rgba(0,0,0,0.22);
    opacity: 0.92;
}

/* mobile size tuning */
@media(max-width: 480px) {
    .social-buttons img {
        height: 120px;
    }
}



@media (max-width: 992px) {
  .app-title {
    font-size: 20px;
  }

  .app-title span {
    font-size: 18px;
  }

  .title-wrap {
    gap: 18px;
    padding: 14px 20px;
  }

  .app-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
}