/* Donate Page Styles */
.donate-header {
    text-align: center;
    margin-bottom: 40px;
}

.donate-header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #ffeb3b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.donate-header p {
    font-size: 1.5em;
    line-height: 1.5;
    margin-bottom: 30px;
}

.donate-highlight {
    color: #ffeb3b;
    font-weight: bold;
}

.donate-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.donate-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ONLY moves card up and gives border glow on hover - NO BACKGROUND CHANGE */
.donate-card:hover {
    transform: translateY(-5px);
    border-color: #ffeb3b;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* The shine effect */
.donate-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 235, 59, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.7s ease;
    opacity: 0;
}

/* ONLY the shine animation on card hover */
.donate-card:hover:before {
    opacity: 0.5;
    animation: donate-shimmer 1.5s forwards;
}

@keyframes donate-shimmer {
    0% { left: -100%; opacity: 0.7; }
    100% { left: 100%; opacity: 0; }
}

/* ENHANCED BUTTON HOVER GLOW EFFECT - Now more vibrant and clearly visible */
.donate-card:has(.donate-card-link:hover) {
    background: rgba(255, 235, 59, 0.15) !important;
    box-shadow: 0 0 20px rgba(255, 235, 59, 0.7) !important;
    border-color: rgba(255, 235, 59, 0.8) !important;
    transform: translateY(-5px) !important;
}

.donate-card-icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: #ffeb3b;
    text-align: center;
}

.donate-card-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    color: #ffeb3b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.donate-card-content {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
    flex-grow: 1;
}

.donate-key-phrase {
    font-weight: bold;
    font-style: italic;
    color: #ffeb3b;
    text-decoration: underline;
    text-decoration-color: rgba(255, 235, 59, 0.5);
    text-underline-offset: 2px;
}

.donate-emphasis {
    font-weight: bold;
}

.donate-subtle-emphasis {
    font-style: italic;
}

.donate-card-link {
    display: block;
    background: #ffeb3b;
    color: #4a148c !important;
    text-align: center;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none !important;
    transition: all 0.2s ease;
    text-transform: uppercase;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 10;
}

.donate-card-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.donate-card-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.donate-card-link:hover:before {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.donate-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffeb3b, transparent);
    margin: 40px 0 20px;
    border: none;
}

.donate-footer {
    font-size: 1.4em;
    line-height: 1.6;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.donate-footer-emphasis {
    font-weight: bold;
    letter-spacing: 0.5px;
}

.donate-footer-highlight {
    color: #ffeb3b;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 235, 59, 0.3);
}

@media (max-width: 768px) {
    .donate-cards {
        flex-direction: column;
    }
    
    .donate-card {
        min-width: 100%;
    }
    
    .donate-header h1 {
        font-size: 2.5em;
    }
}