/* Hero Images */
.hero-images-container {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
}

.hero-img {
    position: absolute;
    width: 180px;
    padding: 20px;
    height: auto;
    border-radius: 100%;
    box-shadow:
        10px 10px 20px var(--shadow-dark),
        -10px -10px 20px var(--shadow-light);
    opacity: 0;
    background: rgba(255, 255, 255, .5);

    /* Animation: Fade In only */
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Triangle Layout */
.img-1 {
    /* Top Center */
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    /* Override transform for fadeIn animation compatibility if needed, 
       but since we use left/top, we can use margin-left to center or calc */
    left: calc(50% - 90px);
}

.img-2 {
    /* Bottom Right */
    bottom: 100px;
    right: 60px;
}

.img-3 {
    /* Bottom Left */
    bottom: 100px;
    left: 60px;
}

@media (max-width: 1280px) {
    .hero-images-container {
        display: none;
    }
}