/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    text-align: center;
}
.donor-heading-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('images/donorbg.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.donor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.donor-heading-text {
    color: white;
    font-size: 4rem;
    letter-spacing: 2px;
    /* text-align: center; */
    transition: transform 0.3s ease-in-out;
}

.donor-heading-text:hover {
    transform: scale(1.5);
}

/* Highlight Section */
.highlight-section {
    background: #eaf0e0; /* Light green background */
    padding: 40px;
    text-align: center;
    border-bottom: 2px solid #d4e4d4; /* Slightly darker green border */
}

.highlight-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.shloka {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: bold;
    color: #f4a300; /* Saffron color */
    margin: 0;
    padding: 20px;
}

.shloka-meaning {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
    padding: 0 20px;
}

/* Donor Section */
.donor-section {
    background: #f5f9f5; /* Very light green background */
    padding: 60px 20px;
    text-align: center;
}

.donor-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.donor-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.donor-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 320px;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
    overflow: hidden;
    position: relative;
}

.donor-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.donor-image {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
	Display:none;
}

.donor-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.donor-card:hover .donor-image img {
    transform: scale(1.1);
}

.donor-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin: 10px 0;
}

.donor-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Media Queries for Responsive Design */

/* For Tablets and Smaller Screens */
@media (max-width: 768px) {
    .donor-heading-text {
        font-size: 2.5rem;
    }

    .highlight-content {
        padding: 15px;
    }

    .shloka {
        font-size: 1.5rem;
        padding: 15px;
    }

    .shloka-meaning {
        font-size: 1rem;
        padding: 0 15px;
    }

    .donor-section {
        padding: 40px 10px;
    }

    .donor-section h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .donor-container {
        gap: 20px;
    }

    .donor-card {
        width: 280px;
        padding: 15px;
    }

    .donor-image img {
        height: 180px;
    }
}

/* For Mobile Phones */
@media (max-width: 480px) {
    .donor-heading-text {
        font-size: 1.8rem;
    }

    .highlight-content {
        padding: 10px;
    }

    .shloka {
        font-size: 1.2rem;
        padding: 10px;
    }

    .shloka-meaning {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .donor-section {
        padding: 30px 10px;
    }

    .donor-section h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .donor-container {
        gap: 10px;
    }

    .donor-card {
        width: 100%;
        max-width: 300px;
        padding: 10px;
    }

    .donor-image img {
        height: 150px;
    }
}
