﻿
/* Carousel Section */
.custom-carousel {
    box-shadow: none;
    overflow: hidden;
}


.custom-carousel-img {
    width: 100%;
    height: 60vh;
    object-fit: cover; /* Shows full image without cropping */
    object-position: center; /* Centers the image within the container */
    border-radius: 10px;
    background-color: #000; /* Optional fallback */
}
/* Highlighted Text */

.highlight {
    color: rgb(9, 17, 9);
    font-weight: bold;
}

/* Divider Line */
.custom-divider {
    border-top: 2px solid #240f86;
    margin: 10px 0 20px;
}

/* Donation Card */
.donation-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(238, 235, 235, 0.05);
    transition: transform 0.3s ease;
}

    .donation-card:hover {
        transform: translateY(-5px);
    }

    .donation-card img {
        height: 200px;
        object-fit: cover;
    }

    .donation-card .btn {
        background-color: #198754;
        color: white;
    }

.h2 {
    font-weight: bold;
    margin-bottom: 30px;
}

.gallery-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .gallery-img:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }



.btn-custom {
    background-color: #007a3d;
    color: white;
    border: none;
}

    .btn-custom:hover {
        background-color: #006634;
    }

.language-switch {
    border: 1px solid #ccc;
    padding: 2px 8px;
    border-radius: 5px;
    margin-right: 10px;
}

.social-icons img {
    height: 20px;
    margin-left: 10px;
}





.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

    .gallery-img:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease-in-out;
    }
/*
.modal-dialog {
    margin: 0;
    max-width: 90%; 
    max-height: 90%; 
    height: auto;
    width: auto;
}*/

/*.modal-content {
    border: none;
    background-color: transparent;
}

.modal-header {
    border: none;
    background: transparent;
}

.modal-body {
    padding: 0;
    background-color: transparent;*/
    /*display: flex;*/
    /*justify-content: center;
    align-items: center;
    height: 100%;*/ /* Ensure the modal body takes full height */
/*}*/

#modalImage {
    max-width: 70%; /* Ensure the image fills the width */
    max-height: 80%; /* Ensure the image fills the height */
    object-fit: contain; /* Maintain the aspect ratio of the image */
    display: block;
    margin: auto;
}

.btn-close {
    filter: invert(1); /* White close button on dark background */
}