/* style.css - small custom tweaks that work without a Tailwind build */
:root {
  --brand: #2563eb; /* blue-600 */
}
html,
body {
  height: 100%;
}
body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f8fafc; /* slightly off-white */
  color: #0f172a;
}

/* Small utility since we aren't running a Tailwind build for some custom pieces */
.container-centered {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.muted {
  color: #6b7280;
}

/* Keep link color consistent */
a {
  color: var(--brand);
}

.rounded-full-ring {
  border-radius: 9999px;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.06);
}

/* Simple responsive image fit for SVG placeholders */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* small helper for hover scale when JS disabled */
.hover-scale {
  transition: transform 0.25s ease-in-out;
}
.hover-scale:hover {
  transform: scale(1.03);
}

/* Make Instagram embeds responsive inside our grid */
.instagram-card,
.instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  box-sizing: border-box;
}

.instagram-card iframe {
  width: 100% !important;
  height: auto !important;
}

/* Add a bit of visual polish to embed containers */
.instagram-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
