/* Custom styles complementing Tailwind */

/* Smooth scrolling is handled via CSS in HTML */

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

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

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #274c34 0%, #5a9e6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass morphism effect */
.glass {
    background: rgba(254, 253, 248, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Subtle pattern background */
.pattern-bg {
    background-image: radial-gradient(circle at 2px 2px, rgba(39, 76, 52, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #5a9e6f;
}

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

/* Print styles */
@media print {
    nav, .mobile-menu {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .fade-in {
        opacity: 1;
        transform: none;
    }
}
