/* Dynamite Kettle Corn — Custom Styles */
/* All styles are embedded in index.html for a single-file deployment.
   This file is kept as a reference point for any custom overrides. */

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FBF5F4;
}
::-webkit-scrollbar-thumb {
    background: #D4827C;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #B5544E;
}

/* Selection color */
::selection {
    background: #E8B4AC;
    color: #3C1518;
}

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

/* Print styles */
@media print {
    .nav, .hero-scroll, .hamburger, .mobile-menu {
        display: none !important;
    }
    body {
        color: #000;
        background: #fff;
    }
    section {
        padding: 40px 20px;
        page-break-inside: avoid;
    }
}
