/* Custom styles for Paderewski Construction */

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

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

/* Selection color */
::selection {
    background-color: #be185d;
    color: #fff;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #be185d;
    outline-offset: 2px;
}

/* Loading state for form button */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

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