/* Blood of Heroes Tattoo — Custom Styles */
/* Additional styles beyond Tailwind */

/* Ensure smooth rendering */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection color */
::selection {
    background: rgba(21, 128, 61, 0.2);
    color: #14532d;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid #15803d;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    .hero-bg,
    .float-shape,
    .cta-pattern {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
    }
}

/* Large screen adjustments */
@media (min-width: 1920px) {
    .max-w-7xl {
        max-width: 80rem;
    }
}
