.mukta-extralight {
    font-family: "Mukta", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.mukta-light {
    font-family: "Mukta", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.mukta-regular {
    font-family: "Mukta", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.mukta-medium {
    font-family: "Mukta", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.mukta-semibold {
    font-family: "Mukta", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.mukta-bold {
    font-family: "Mukta", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.mukta-extrabold {
    font-family: "Mukta", sans-serif;
    font-weight: 800;
    font-style: normal;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    /* Prevents horizontal scrolling */


}

/* Parallax effect for sections */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Overlay for hero slider */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

/* Ensure carousel items (video and images) have the same height and use object-fit for cropping */
.hero-carousel-item,
.hero-carousel-item video,
.hero-carousel-item img {
    height: 900px;
    object-fit: cover;
}

/* Theme selection CSS variables */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    ----bs-border-radius:0.5rem;
}

[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #ffffff;
}

[data-theme="colorful"] {
    --bg-color: #ffefd5;
    --text-color: #8b0000;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 999;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
    display: none;
}

.popup {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    max-width: 350px;
    width: 100%;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #6b7280;
}

.close-btn:hover {
    color: #374151;
}

.qr-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.qr-code {
    width: 200px;
    height: 200px;
}

.popup-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.popup-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    text-align: center;
}

.thank-you {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}



/* Donors List Styles */
.donors-list {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.donors-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0.75rem 0;
    border-bottom: 2px solid #2563eb;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #2563eb;
}

.donor {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.donor:last-child {
    border-bottom: none;
}

.donor-name {
    font-weight: 600;
    color: #242d3d;
}

.donor-location {
    color: #6b7280;
}

.donor-date {
    color: #2563eb;
    font-weight: 600;
    text-align: right;
}

.donor-amount {
    color: #2563eb;
    font-weight: 600;
    text-align: right;
}


#gallery img {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 9999;
}

#gallery img:hover {
    transform: scale(1.10);
    z-index: 99999;
}

.nav-link:hover {
    transform: scale(1.03);
    background: #a70baf;

}

.gallery-item .description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .description {
    opacity: 1;
    z-index: 9999999;
}

.news-item h2 {
    text-align: center;
    color: #333;
}

.news-item {
    background: #9baebb;
    padding: 15px;
    margin: 50px 0;
    border-radius: 5px;
    opacity: 0;

}



.donation-request {

    text-align: center;
    color: white;
}

.donation-request h2 {
    color: white;
}

.donation-request ul {
    text-align: left;
    display: inline-block;
    margin: 20px auto;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(-225deg, #FF057C 0%, #8D0B93 50%, #321575 100%) !important;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-primary:hover {
    background: linear-gradient(-225deg, #FF057C 0%, #4b294d 50%, #321575 100%) !important;
}

.bg-upgrade {
    background: linear-gradient(-225deg, #FF057C 0%, #8D0B93 50%, #321575 100%) !important;
    color: white;
}

.bg-upgrade .nav-link,
.bg-upgrade .navbar-brand {
    color: white;
}

.navbar-toggler-icon {
    background-color: white;
}

.counter a:first-child {
    display: none;
}

/* news ticker */
.news-ticker {
    width: 100%;
    background-color: #333;
    color: #fff;
    overflow: hidden;
    box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.5);
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.ticker-content span {
    background-color: #ff0000;
    padding: 10px;
    margin-right: 20px;
    font-weight: bold;
}

.ticker-content ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ticker-content li {
    margin-right: 50px;
}

.ticker-content a {
    color: #fff;
    text-decoration: none;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
