/* O'salon — custom styles layered on top of Tailwind utilities. */

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
}

[lang="ar"] body,
[lang="ar"] * {
  font-family: "Cairo", system-ui, sans-serif;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Animated progress / store-button accent bars */
@keyframes shine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
}
@keyframes barpulse {
  0%, 100% { width: 78%; opacity: 0.7; }
  50% { width: 92%; opacity: 1; }
}
.animate-shine { animation: shine 2.5s ease-in-out infinite; }
.animate-barpulse { animation: barpulse 2.4s ease-in-out infinite; }

/* Soft ambient blobs used behind the hero / CTA */
.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(90px);
  pointer-events: none;
}

/* Phone mockup */
.phone-shell {
  width: 220px;
  height: 440px;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.25), 0 0 0 1.5px rgba(255, 255, 255, 0.06);
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 18px;
  border-radius: 9999px;
  z-index: 2;
}
.phone-card {
  backdrop-filter: blur(2px);
}
