/* ===== CUSTOM STYLES FOR WITKOWSKI'S CHRISTMAS TREE FARM ===== */

/* Base styles already handled by Tailwind + inline styles in index.html */

/* Additional custom tweaks */

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

/* Selection color */
::selection {
    background-color: #0d9488;
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

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