/* Custom Utilities */
.fade-in { animation: fadeIn 0.5s ease-in-out; }
.slide-up { animation: slideUp 0.6s ease-out; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Active Link State */
.nav-link.active {
    color: #F59E0B;
    font-weight: 600;
}

/* Hide Scrollbar for cleaner look in specific sections */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Honeypot field - visually hidden but available to bots */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* Logo Scaling */
.logo img, .footer-logo img {
    max-height: 52px;
    width: auto;
}
