/* ========================================
   DONATE / PROJECTS HERO - Fully Responsive
   ======================================== */

.hero-donate {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3.5rem);
    overflow: hidden;
    color: #ffffff;
}

/* Background Carousel */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-carousel .carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-carousel .carousel-slide.active {
    opacity: 1;
}

/* Gradient Overlay - Stronger on mobile */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.7) 80%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Content */
.hero-donate-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

/* Title - Fluid typography */
.hero-donate-title {
    font-size: clamp(1.3rem, 3vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

/* Description */
.hero-donate-desc {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
}

/* CTA Button */
.hero-donate-btn {
    display: inline-block;
    background-color: #FDB913;
    color: #000;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: 0.9em 2.2em;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(253, 185, 19, 0.35);
}

.hero-donate-btn:hover {
    background-color: #e5a610;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(253, 185, 19, 0.5);
}

.hero-donate-btn:active {
    transform: translateY(-1px);
}

/* Indicators */
.hero-donate-indicators {
    position: absolute;
    bottom: clamp(1.5rem, 4vw, 2.5rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero-donate-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-donate-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-donate-indicators .indicator.active {
    background: #FDB913;
    width: 36px;
    border-radius: 8px;
}

/* RESPONSIVE BREAKPOINTS - Mobile First Enhancements */


@media (max-width: 1024px) {
    .hero-donate {
        align-items: center;
        text-align: center;
    }

    .hero-donate-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-donate-desc {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.6) 0%,
                rgba(0, 0, 0, 0.75) 60%,
                rgba(0, 0, 0, 0.95) 100%);
    }

    .hero-donate-title {
        margin-bottom: 1.2rem;
    }

    .hero-donate-btn {
        width: 100%;
        max-width: 320px;
        padding: 1em 2em;
    }
}

@media (max-width: 480px) {
    .hero-donate {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero-donate-indicators .indicator.active {
        width: 28px;
    }
}

/* Ultra-wide screens - prevent text from stretching too much */
@media (min-width: 1600px) {
    .hero-donate-content {
        max-width: 1300px;
    }

    .hero-donate-title {
        font-size: 5rem;
    }
}

@media (min-width: 1500px) {
    .hero-donate-content {
        max-width: 1300px;
    }

    .hero-donate-title {
        font-size: 5rem;
    }
}

@media (min-width: 1450px) {
    .hero-donate-content {
        max-width: 1300px;
    }

    .hero-donate-title {
        font-size: 5rem;
    }
}