/* @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&family=Plus+Jakarta+Sans:wght@400;600;800&display=swap'); */

html,
body {
    scroll-behavior: smooth;
}

/* ---------------------------------------------- */
/* ---------------------------------------------- */

.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.module-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #cad2dc, transparent);
    margin: 4rem 0;
}



.nav-link.active {
    color: #10b981;
    transition: 0.5s ease;
}

.nav-link.active span {
    background-color: #10b981;
    transform: scale(1.5);
    transition: 0.5s ease;
}









/* Support Button Styles */
.support-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.support-btn:hover {
    transform: scale(1.1);
}
.heart-icon {
    animation: heartPulse 2s infinite ease-in-out;
}
@keyframes heartPulse {
    0% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.3); }
    60% { transform: scale(1); }
}
.tooltip {
    visibility: hidden;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}
.support-btn:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.star {
    display: inline-block;
    transition: all 0.3s ease;
    animation: starpumping 2s infinite ease;
}

@keyframes starpumping {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.3); }
    60%  { transform: scale(1); }
    100% { transform: scale(1.  3); }
}