/* Динамические фоновые изображения */

/* Intro секция - фоновое изображение */
.intro {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    var(--intro-background-image, url("/images/back2.png"));
    background-color: #99a0ff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-position 5.3s ease-in-out;
}

/* Features секция - фоновое изображение */
.features__color {
    background-image: var(--features-background-image, url('/images/frontend/features/features.webp'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 40vh;
    height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
} 