/* Falling Leaves Animation */
#leaf-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.leaf {
    position: absolute;
    top: -50px;
    font-size: 24px;
    color: #ff5500;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-50px) rotate(0deg) translateX(0px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) rotate(360deg) translateX(50px);
        opacity: 0;
    }
}

/* Nav Improvements */
.nav-links a {
    font-family: 'Zen Maru Gothic', sans-serif;
    /* Cute rounded font */
    font-weight: 700;
    font-size: 1.1rem;
    /* Larger font */
    letter-spacing: 1px;
}

/* Download Button Color Fix */
.btn-download {
    color: white !important;
    /* Force white text */
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
    transition: 0.3s;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.6);
}