/* appgrid.css – App Store Style Grid */

/* body {
  font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Arial,
    sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 2rem;
} */

#app-store-section {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

#app-store-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1c1c1e;
}

/* Grid Layout */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* Each App Icon */
.app-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 120px;
}

.app-icon-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.app-icon-card img:hover {
  transform: scale(1.05);
}

.app-icon-card p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #333;
  text-align: center;
  line-height: 1.2;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .app-grid {
    gap: 1.2rem;
  }

  .app-icon-card p {
    font-size: 0.75rem;
  }
}
