/* Donate Page Specific Styling */
.donate-container {
    padding: 50px 20px;
    max-width: 900px;
    margin: 50px auto;
    background-color: #3a3a3a; /* Chalkboard background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.donation-info h2 {
  font-size: 50px;
}


/* Donation Items Container */
.donation-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Each Donation Item */
.donation-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Donation Icon Styling */
.donation-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

/* Donation Info Text Styling */
.donation-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    margin: 0;
}

.donation-info a {
    color: #ff9800;
    text-decoration: none;
}

.donation-info a:hover {
    text-decoration: underline;
}

/* Existing Donate Button Styling (if needed) */
.donate-button {
    display: inline-block;
    background-color: #ff9800;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.donate-button:hover {
    background-color: #f65701;
    transform: scale(1.1);
}

.donate-button:active {
    transform: scale(1);
}

/* Web Links Section Styling (if reused) */
.web-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.custom-link {
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: transform 0.3s, filter 0.3s;
}

.custom-link:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.tooltip {
    visibility: hidden;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    z-index: 1000;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.custom-link:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 480px) {
    .donation-info h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    .donation-item p {
        font-size: clamp(.8rem, 3vw, 1rem);
    }
}
