﻿/*body {
}*/
/* HERO SECTION */
/*.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/hero.jpg') center/cover no-repeat;
    padding: 100px 0;
    min-height: 80vh;
}*/

/* BUTTONS */
/*.btn-orange {
    background-color: #ff7a00;
    color: #fff;
    border-radius: 30px;
    padding: 12px 28px;
}

    .btn-orange:hover {
        background-color: #e66e00;
        color: #fff;
    }*/

/* FEATURE CARDS */
/*.feature-card {
    border-radius: 16px;
    padding: 30px 20px;
    border: none;
    transition: transform 0.2s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
}

.bg-orange {
    background-color: #ff7a00;
}*/

/* IMPACT */
/*.impact-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
}

.text-orange {
    color: #ff7a00;
}*/
/***************************/
body {
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/images/hero.jpg') center center / cover no-repeat;
    padding: 140px 0;
    color: white;
    text-align: center;
}

/* HERO BUTTON */
.btn-orange {
    background-color: #f4a300;
    color: white;
    border: none;
    font-weight: 600;
}

    .btn-orange:hover {
        background-color: #e39200;
        color: white;
    }
/* COURSE TILES */
.course-tile {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* DONATION PANEL */
.donation-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* AMOUNT GRID */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}

/* AMOUNT BUTTON */
.amount-btn {
    padding: 12px;
    border: 1px solid #ccc;
    background: white;
    font-weight: 600;
    cursor: pointer;
}

    .amount-btn:hover {
        background: #f4a300;
        color: white;
    }

    .amount-btn.active {
        background: #f4a300 !important;
        color: white !important;
        border-color: #f4a300 !important;
    }

/* DONATE BUTTON */
.btn-warning {
    background: #f4a300 !important;
    border: none;
    color: white;
}

    .btn-warning:hover {
        background: #e39200 !important;
    }

/* IMPACT CARDS */
.impact-card {
    background: white;
    border-radius: 10px;
}

/* ORANGE TEXT */
.text-orange {
    color: #f4a300;
}

.fa-coins {
    animation: drop 1.5s infinite;
}

@keyframes drop {
    0% {
        transform: translateY(-5px);
        opacity: 0;
    }

    50% {
        transform: translateY(3px);
        opacity: 1;
    }

    100% {
        transform: translateY(8px);
        opacity: 0;
    }
}



