/* Custom styles supplement - main styles are in index.html for single-file deployment */
/* This file can be used for additional custom styles if needed */

:root {
    --teal: #14B8A6;
    --teal-dark: #0F766E;
    --teal-light: #CCFBF1;
    --slate: #334155;
    --slate-dark: #1E293B;
    --slate-light: #F8FAFC;
    --white: #FFFFFF;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-500: #64748B;
}

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

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

/* Print styles */
@media print {
    nav,
    .contact-form,
    .hero-buttons {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem;
    }
}
