/* Shared Project Styles */

/* Animations */
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}
.animate-fade { 
    animation: fadeIn 0.6s ease-out forwards; 
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { 
    background: #065f46; 
    border-radius: 10px; 
}

/* Active Navigation Marker */
.nav-link-active { 
    color: #065f46 !important; 
    border-bottom: 2px solid #065f46; 
}

/* Social Hub Interactions */
.heart-active { 
    fill: #ef4444; 
    color: #ef4444 !important; 
}

/* Toast Notifications */
#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #064e3b;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 16px;
    position: fixed;
    z-index: 100;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-weight: bold;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
#toast.show {
    visibility: visible;
    animation: fadeIn 0.5s, fadeOut 0.5s 2.5s;
}
@keyframes fadeOut { 
    from { opacity: 1; } 
    to { opacity: 0; } 
}

/* Mobile responsive fixes */
.logo-text-fallback {
    display: none;
}
img[src=""]:not([alt]), img:not([src]) {
    display: none;
}