/* Custom styles for Hillcrest Katahdins */

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

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, #2d5a3d 0%, #4a7c5c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

::-webkit-scrollbar-thumb {
    background: #2d5a3d;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a3624;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 3px solid #E8F3D1;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    nav, .animate-bounce, button {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
