/* ── Smartag.pet — Custom Styles ──────────────────────────────── */
/* These are the minimal styles not covered by Tailwind utility classes. */

/* ── Smooth reveal on scroll ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Gradient text utility ───────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #ca8a04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Custom scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ── Selection color ─────────────────────────────────────────── */
::selection {
    background-color: #bbf7d0;
    color: #14532d;
}

/* ── Focus ring ──────────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ── Print styles ────────────────────────────────────────────── */
@media print {
    nav, footer, .no-print {
        display: none !important;
    }
}
