/* Фон для всей страницы с градиентом */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: linear-gradient(135deg, #b4e197 0%, #76c893 50%, #34a853 100%); /* Плавный градиент */
    background-attachment: fixed; /* Фиксированный фон при прокрутке */
    background-size: cover; /* Фон будет покрывать всю страницу */
    /*            overflow: hidden;*/
}

/* Параллакс эффект для фона */
.hero {
    background-image: url('/media/original_images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 75px 20px;
    position: relative;
    z-index: 1;
    transition: background-position 0.1s;
}

/* Полупрозрачный слой для контраста текста с фоном */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25); /* Полупрозрачный черный слой */
    z-index: -1;
}

.hero h1, .hero h2, .hero p {
    margin: 0.25em 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-size: 5em;
    font-weight: bold;
}

.hero h2 {
    font-size: 2.8em;
    margin-top: 10px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 3em;
}

/* Кнопка призыва к действию */
.cta-btn {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.cta-btn:hover {
    background-color: #45a049;
}

/* Цветовое выделение блоков */
.section, .alt-section {
    padding: 80px 20px;
    text-align: center;
}

.section {
    background: rgba(255, 255, 255, 0.9); /* Полупрозрачный белый фон */
}

.alt-section {
    background: rgba(240, 240, 240, 0.9); /* Полупрозрачный немного сероватый фон */
}

.features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    flex: 1;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.clients-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.client-card {
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 300px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333; /* Статичный темный цвет */
    text-decoration: none; /* Убираем подчеркивание у ссылок */
}

.client-card:hover {
    text-decoration: none; /* Убираем подчеркивание при наведении */
}

/* Стили для формы контактов */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center; /* Центрируем содержимое формы */
    border: 2px solid #4CAF50; /* Зеленая рамка */
    border-radius: 15px; /* Закругленные углы */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Мягкая тень для глубины */
    background-color: rgba(255, 255, 255, 0.9); /* Полупрозрачный белый фон */
    position: relative; /* Устанавливаем относительное позиционирование */
    z-index: 1; /* Устанавливаем порядок наложения для видимости рамки */
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.contact-form button:hover {
    background-color: #45a049;
}

/* Центрирование капчи */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Подвал */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Галерея */
.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.gallery img {
    width: 400px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .features-container, .clients-section {
        flex-direction: column;
        align-items: center;
    }

    .feature, .client-card {
        width: 90%;
    }
}

.feature {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature:hover {
    transform: translateY(-10px); /* Плавное перемещение карточки вверх при наведении */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.feature i {
    font-size: 60px; /* Увеличение размера иконки */
    color: #4CAF50; /* Цвет иконки (например, зелёный для экологичных или природных тем) */
    transition: color 0.3s ease; /* Плавная смена цвета */
}

.feature:hover i {
    color: #45a049; /* Изменение цвета иконки при наведении */
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
    color: #555;
}

textarea {
    resize: none; /* Запрещаем изменение размера */
    width: 100%; /* Устанавливаем ширину */
    height: 150px; /* Устанавливаем высоту */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Стили для кнопки "Вернуться наверх" */
#backToTopBtn {
    display: none; /* По умолчанию кнопка скрыта */
    position: fixed;
    bottom: 100px;
    right: 40px;
    z-index: 100;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: darkgreen;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 40%;
    transition: background-color 0.3s, transform 0.3s ease-in-out;
}

/* При наведении на кнопку */
#backToTopBtn:hover {
    background-color: green;
    transform: scale(1.1);
}

/* Анимация при плавной прокрутке */
html {
    scroll-behavior: smooth;
}

.lb-caption {
    font-size: 1rem!important;
}

.lb-number {
    font-size: 0.8rem!important;
}