/* Kogane Korean Kitchen — Custom Styles */

/* Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--burgundy, #6B182C);
    outline-offset: 2px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream, #FDF8F5);
}

::-webkit-scrollbar-thumb {
    background: var(--blush, #F5A3B3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy, #6B182C);
}

/* Print */
@media print {
    .nav,
    .mobile-menu,
    .hero-scroll,
    .gallery-grid {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
    }

    section {
        padding: 2rem;
    }
}
