/* Additional custom styles */
html {
    scroll-behavior: smooth;
}

/* Ensure text contrast on all backgrounds */
.bg-plum-900, .bg-plum-800, .bg-plum-950 {
    color: white;
}

.bg-plum-50 {
    color: #1F2937;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #D97706;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    nav, #contact, footer {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
}
