/* Global */
body {
    font-family: 'Fira Mono', monospace;
    font-size: 14px;
    margin: 0;
    padding: 5vw;
    background-color: #141414;
    color: #e0e0e0;
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

a {
    text-decoration: none;
    background-color: #bbff41;
    color: #141414;
    border-radius: 8px;
    padding: 2px 4px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

a:hover {
    background-color: #8bd92d;
    color: #000;
    transform: scale(1.03);
}

/* Donation progress bar*/

#donation {
    width: 50vw;
    height: 10px;
    background-color: white;
    border-radius: 25px;
    margin: auto;
    padding: 5px;
}

#donationProgress {
    width: 29%;
    height: 10px;
    border-radius: 25px;
    background-color: #bbff41;
}

#donateButton {
    text-decoration: underline;
    font-size: 14pt;
    font-weight: normal;
    background-color: transparent;
    color: #bbff41;
}

/* Headings with fixed neon glow (no animation) */
h1, h2, h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #bbff41;
    position: relative;
}

/* Subtle neon separators */
h2::after, h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #bbff41;
    opacity: 0.3;
    margin: 10px auto 0 auto;
    border-radius: 1px;
}

/* Highlighted text */
.text {
    color: #bbff41;
}

/* Bold text green */
b {
    color: #bbff41;
}

/* Services Container */
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    padding: 20px 5vw;
}

/* Service Cards with subtle hover glow */
.element {
    background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
    border: 1px solid #444;
    border-radius: 15px;
    padding: 25px;
    display: inline-block;
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1s forwards;
}

.element:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 0 6px #bbff41, 0 0 12px #bbff41;
    background: linear-gradient(135deg, #2c2c2c, #3a3a3a, #444);
}

/* Fade-in animation for elements */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Paragraphs inside cards */
.element p {
    margin-top: 10px;
    font-size: 14px;
    color: #d0d0d0;
}

/* Footer text */
p.text {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 5vw 3vw;
    }
    .services {
        gap: 15px;
        padding: 20px 2vw;
    }
    .element {
        max-width: 90%;
        padding: 20px;
    }
}

