/* Custom styles and animations */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: #9cc5a6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6fa07c;
}

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

/* Smooth transitions for interactive elements */
button,
a {
    transition: all 0.3s ease;
}

/* Image loading placeholder */
img {
    background-color: #e3efe6;
}

/* Print styles */
@media print {
    nav,
    button,
    .scroll-reveal {
        display: none !important;
    }
    
    body {
        color: #1f3429;
        background: white;
    }
}
