/* =======================================================
   BASE.CSS - Базовые стили сайта
   ======================================================= */

/* Основные настройки body */
body {
    background: url("../img/Image897.d980852ac4d3.png") center/cover fixed no-repeat;
    margin: 0;
    padding-top: 70px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Анимированный фон - активируется классом animated-bg */
body.animated-bg {
    background: url("../img/Image897.d980852ac4d3.png") center/cover fixed no-repeat;
}

/* Основной контент */
.content-wrapper {
    min-height: calc(100vh - 70px);
}

.main-content {
    padding: 2rem 1rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    body {
        padding-top: 56px;
    }
    
    .content-wrapper {
        min-height: calc(100vh - 56px);
    }
    
    .main-content {
        padding: 1rem 0.5rem;
    }
}