/* Custom styles for OBX Psychological Services */

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B1D3A;
}
::-webkit-scrollbar-thumb {
    background: #7EBFBF;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a8d4d4;
}

/* Selection color */
::selection {
    background: #7EBFBF;
    color: #0B1D3A;
}

/* Animation keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Print styles */
@media print {
    nav, #contact-form, .animate-bounce { display: none !important; }
    body { background: white !important; color: black !important; }
    .bg-midnight { background: #f5f5f5 !important; }
}
