/* Additional custom styles */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #0d9488;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f766e;
}

/* Animation delays for staggered reveals */
.reveal:nth-child(1) {
    transition-delay: 0ms;
}

.reveal:nth-child(2) {
    transition-delay: 100ms;
}

.reveal:nth-child(3) {
    transition-delay: 200ms;
}

.reveal:nth-child(4) {
    transition-delay: 300ms;
}

.reveal:nth-child(5) {
    transition-delay: 400ms;
}

.reveal:nth-child(6) {
    transition-delay: 500ms;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #14b8a6;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    .hero-bg {
        background-image: none !important;
        background-color: #042f2e !important;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
