/* /becap/css/catalog-style.css */

/* === ОБЩИЕ УЛУЧШЕНИЯ ДЛЯ СТРАНИЦ КАТАЛОГА === */

body {
    background-color: #f8f9fa; /* Чуть более мягкий фон, чем чисто белый */
}

#content {
    background-color: #ffffff; /* Основной контент на белом фоне */
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    margin-top: -60px; /* Слегка "поднять" контент на баннер */
    position: relative;
    z-index: 10;
}

/* === УЛУЧШЕННАЯ ТИПОГРАФИКА === */

.postcontent h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Красивое подчеркивание для подзаголовков */
.postcontent h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #1ABC9C; /* Ваш фирменный цвет */
}

.postcontent .lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
}

/* === НОВЫЙ СТИЛЬ ДЛЯ БЛОКА ПРЕИМУЩЕСТВ === */

.feature-box.fbox-plain .fbox-icon i {
    font-size: 28px;
    width: 64px;
    height: 64px;
    line-height: 64px;
    background-color: #1ABC9C;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.feature-box.fbox-plain:hover .fbox-icon i {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

.feature-box.fbox-plain .fbox-content h3 {
    font-size: 20px;
    font-weight: 600;
}
.feature-box.fbox-plain .fbox-content h3::after {
    display: none; /* Убираем подчеркивание у заголовков преимуществ */
}

/* === НОВЫЙ БЛОК: ФОТОГАЛЕРЕЯ === */

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.image-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all .3s ease;
}

.image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.image-gallery a:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.image-gallery a:hover img {
    transform: scale(1.05);
}

/* === НОВЫЙ БЛОК: ПРИЗЫВ К ДЕЙСТВИЮ (CTA) === */

.cta-block {
    padding: 60px 40px;
    background: linear-gradient(45deg, #2C3E50, #4CA1AF); /* Градиент в темных тонах */
    color: #fff;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0;
}

.cta-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-block p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-block .button {
    font-size: 16px;
    font-weight: 600;
    padding: 14px 35px;
    background-color: #1ABC9C;
    border-color: #1ABC9C;
    text-transform: uppercase;
}