/* Stoney's Woodfired Pizza - Custom Styles */

:root {
    --navy: #0a1628;
    --navy-light: #152238;
    --gold: #d4a017;
    --gold-light: #f0c040;
    --cream: #faf6ee;
    --white: #ffffff;
    --charcoal: #1a1a1a;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--navy);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Geometric decorations */
.geometric-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.shape-circle {
    border-radius: 50%;
    background: var(--gold);
}

.shape-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: var(--gold);
}

.shape-diamond {
    transform: rotate(45deg);
    background: var(--gold);
}

/* Hover effects for interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Image loading optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Selection color */
::selection {
    background: var(--gold);
    color: var(--navy);
}

/* Print styles */
@media print {
    .nav, .scroll-indicator, .cta {
        display: none;
    }
    body {
        color: #000;
        background: #fff;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
