/* TinyPaws Munchkin Cattery - Custom Styles */
/* Brand: Charcoal (#1f2937), Gray (#6b7280), Dark Gray (#374151) */

/* Hero image rendering quality */
.hero-bg-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

/* Smooth scroll & prevent horizontal overflow */
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}

/* Mobile touch targets - min 44px height for nav links */
@media (max-width: 1023px) {
    nav a.block {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Focus outline for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #6b7280;
    outline-offset: 2px;
}

/* ── Munchkin Playful Design Tokens ── */

/* Rounded pill buttons sitewide */
.btn-primary {
    background-color: #1f2937;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.15s ease;
    display: inline-block;
}
.btn-primary:hover {
    background-color: #374151;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #1f2937;
    border: 2px solid #6b7280;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.15s ease;
    display: inline-block;
}
.btn-secondary:hover {
    background-color: #f9fafb;
    transform: translateY(-1px);
}

/* Playful card style */
.munchkin-card {
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}
.munchkin-card:hover {
    box-shadow: 0 8px 36px 0 rgba(0, 0, 0, 0.13);
    transform: translateY(-3px);
}

/* Neutral section background */
.section-warm {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

/* Neutral accent divider */
.gold-divider {
    height: 3px;
    width: 60px;
    background: #374151;
    border-radius: 9999px;
    margin: 0.75rem auto 1.5rem;
}

/* Paw print decorative accent (used in headings) */
.paw-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #1f2937;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
}

/* Kitten gallery card hover zoom */
.kitten-img-wrap {
    overflow: hidden;
    border-radius: 1.25rem;
}
.kitten-img-wrap img {
    transition: transform 0.4s ease;
}
.kitten-img-wrap:hover img {
    transform: scale(1.06);
}

/* Testimonial card style */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.06);
}

/* Section heading accent underline */
.heading-accent {
    position: relative;
    display: inline-block;
}
.heading-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 50%;
    height: 3px;
    background: #374151;
    border-radius: 9999px;
}

