/*
Theme Name: Twenty Twenty-Five Child (Tokonatsuya)
Description: Custom template for Dining Bar Tokonatsuya
Version: 1.0
*/

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* Utility to hide standard WP Admin bar margin if needed, 
   though usually handled by WP automatically. 
   Adjusting header top position if admin bar is present. */
body.admin-bar header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar header {
        top: 46px;
    }
}