/* General container */
.ace-hero-container-a0bff8ee {
    padding: 80px 40px;
    background-color: #12151B;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

.ace-hero-row-a0bff8ee {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Left Column */
.ace-hero-col-left-a0bff8ee {
    flex: 1;
    max-width: 600px;
}

.ace-tagline-a0bff8ee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #FF602E;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ace-tagline-icon-a0bff8ee i,
.ace-tagline-icon-a0bff8ee svg {
    color: #FF602E;
    fill: #FF602E;
    font-size: 12px;
}

.ace-hero-title-a0bff8ee {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.ace-title-part1-a0bff8ee {
    display: block;
    color: #FFFFFF;
}

.ace-title-highlight-a0bff8ee {
    display: block;
    color: #FF602E;
}

.ace-desc-a0bff8ee {
    font-size: 16px;
    line-height: 1.6;
    color: #A3ABB6;
    margin-bottom: 35px;
}

/* Actions area */
.ace-action-row-a0bff8ee {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.ace-buttons-group-a0bff8ee {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ace-btn-a0bff8ee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-a0bff8ee {
    background-color: #FF602E;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 96, 46, 0.3);
}

.btn-primary-a0bff8ee:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 96, 46, 0.45);
}

.btn-arrow-a0bff8ee {
    transition: transform 0.3s ease;
}

.btn-primary-a0bff8ee:hover .btn-arrow-a0bff8ee {
    transform: translateX(3px);
}

.btn-secondary-a0bff8ee {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #3F444D;
}

.btn-secondary-a0bff8ee:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #FFFFFF;
}

/* Donor avatars stack */
.ace-donors-wrapper-a0bff8ee {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ace-avatar-stack-a0bff8ee {
    display: flex;
    align-items: center;
}

.ace-avatar-stack-a0bff8ee img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #12151B;
    margin-left: -10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ace-avatar-stack-a0bff8ee img:first-child {
    margin-left: 0;
}

.ace-avatar-stack-a0bff8ee img:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 10;
}

.ace-donors-text-a0bff8ee {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 500;
}

/* Right Column (Image and overlays) */
.ace-hero-col-right-a0bff8ee {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.ace-hero-img-wrapper-a0bff8ee {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.ace-main-hero-img-a0bff8ee {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 240px; /* Gorgeous oval frame */
    border: 6px solid #8C5638;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Floating Badges */
.floating-badge-a0bff8ee {
    position: absolute;
    bottom: -15px;
    left: -20px;
    background-color: #FFFFFF;
    padding: 18px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-badge-value-a0bff8ee {
    font-size: 32px;
    font-weight: 800;
    color: #12151B;
    margin: 0 0 2px 0;
    line-height: 1;
}

.floating-badge-desc-a0bff8ee {
    font-size: 12px;
    color: #6C727F;
    margin: 0;
    font-weight: 500;
}

/* Animations */
.ace-animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ace-animate-fade-in {
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatBadge {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-8px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .ace-hero-row-a0bff8ee {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    .ace-hero-col-right-a0bff8ee {
        justify-content: center;
    }
    .ace-action-row-a0bff8ee {
        justify-content: center;
    }
    .floating-badge-a0bff8ee {
        left: 10px;
    }
}

@media (max-width: 576px) {
    .ace-hero-title-a0bff8ee {
        font-size: 38px;
    }
    .ace-buttons-group-a0bff8ee {
        flex-direction: column;
        width: 100%;
    }
    .ace-btn-a0bff8ee {
        width: 100%;
        justify-content: center;
    }
    .ace-action-row-a0bff8ee {
        flex-direction: column;
        gap: 20px;
    }
}
