/* Additional custom styles */

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

/* Custom selection color */
::selection {
    background-color: #1d8249;
    color: #fdfcf8;
}

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

/* Print styles */
@media print {
    .float-1, .float-2, .float-3 {
        animation: none;
    }
    
    nav, footer, .animate-bounce {
        display: none;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (forced-colors: active) {
    .bg-brand-700 {
        background-color: ButtonText;
    }
    
    .text-brand-700 {
        color: ButtonText;
    }
}

/* Loading state for form */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Smooth image loading */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Card hover effects */
.group:hover .group-hover\\:scale-110 {
    transform: scale(1.1);
}

/* Gradient text effect (if needed in future) */
.gradient-text {
    background: linear-gradient(135deg, #1d8249 0%, #31a262 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
