/* ── Virg's — Custom Styles ── */
/* Additional overrides and utilities beyond Tailwind */

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 80px;
}

/* Selection color */
::selection {
    background: rgba(255, 107, 74, 0.3);
    color: #0f1117;
}

/* Focus visible styles */
:focus-visible {
    outline: 2px solid #FF6B4A;
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f1117;
}
::-webkit-scrollbar-thumb {
    background: #303445;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF6B4A;
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ── Accessibility ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .about-img img {
        transform: none;
    }
    .feature-card {
        transform: none;
    }
    .feature-card:hover {
        transform: none;
    }
}

/* ── High contrast mode ── */
@media (prefers-contrast: high) {
    .nav-link {
        color: #ffffff;
    }
    .menu-item-desc {
        color: rgba(255,255,255,0.7);
    }
    .testimonial-text {
        color: #1a1d27;
    }
}

/* ── Print styles ── */
@media print {
    .nav, .mobile-menu, .mobile-menu-overlay, .cta-banner {
        display: none !important;
    }
    body {
        color: #000;
        background: #fff;
    }
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    .hero-bg {
        display: none;
    }
    .hero h1, .hero p, .hero-tagline {
        color: #000 !important;
    }
    .menu-section, .info-bar, .footer {
        background: #fff !important;
        color: #000 !important;
    }
    .menu-item-name, .menu-category-title {
        color: #000 !important;
    }
    .menu-item-desc, .menu-item-price {
        color: #333 !important;
    }
}
