/* ===== СТИЛИ СТРАНИЦЫ "О НАС" ===== */

/* Основной контент */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 30px 0 60px;
    background: #fff;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 13px;
}

.breadcrumbs a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #e31e24;
}

.breadcrumbs .separator {
    color: #ccc;
}

.breadcrumbs .current {
    color: #e31e24;
}

/* Заголовок страницы */
.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.page-title::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e31e24;
}

/* Баннер слайдер */
.banner-slider {
    position: relative;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.banner-slide {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8e0d5 100%);
    min-height: 350px;
}

.banner-content {
    display: none;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    color: #5a4a3a;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Навигация слайдера */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50px;
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #5a4a3a;
    border-radius: 50%;
    background: transparent;
    color: #5a4a3a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #5a4a3a;
    color: #fff;
}

/* Текстовый контент */
.about-text {
    max-width: 900px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ===== БЛОК ФОТОГРАФИЙ ПРОИЗВОДСТВА ===== */

.gallery-section {
    padding: 60px 0;
    background: #f9f9f9;
    margin-top: 40px;
}

.gallery-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.gallery-title::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e31e24;
}

/* Слайдер */
.gallery-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Основное изображение */
.gallery-main {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

/* Кнопки навигации */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-nav:hover {
    background: #e31e24;
    color: #fff;
}

.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }

/* Индикаторы (точки) */
.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.gallery-dot.active {
    background: #e31e24;
    border-color: #fff;
    transform: scale(1.2);
}

/* Миниатюры */
.gallery-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    opacity: 0.7;
}

.gallery-thumb:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.gallery-thumb.active {
    border-color: #e31e24;
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Описание фото */
.gallery-description {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: 20px;
    font-style: italic;
    min-height: 24px;
    transition: opacity 0.3s;
}

.gallery-main img,
.gallery-description {
    transition: opacity 0.3s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .main-content {
        padding: 20px 0 40px;
        padding-top: 40px;
    }

    .page-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    /* Баннер — уменьшаем высоту */
    .banner-slide {
        min-height: auto;
    }

    .banner-image {
        height: auto;
    }

    .banner-image img {
        height: auto;
        max-height: 300px; /* Ограничиваем максимальную высоту */
        object-fit: contain;
    }

    /* Кнопки слайдера — меньше */
    .slider-nav {
        bottom: 10px;
        gap: 8px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 11px;
        border-width: 1px;
    }

    /* Текст */
    .about-text p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    /* Галерея производства */
    .gallery-section {
        padding: 30px 0;
        margin-top: 25px;
    }

    .gallery-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .gallery-main {
        height: 280px;
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .gallery-nav.prev { left: 10px; }
    .gallery-nav.next { right: 10px; }

    .gallery-thumb {
        width: 80px;
        height: 55px;
    }

    .gallery-description {
        font-size: 13px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 20px;
    }

    /* Баннер совсем компактный */
        /* Баннер совсем компактный */
    .banner-slide {
        min-height: auto;
    }

    .banner-image {
        height: auto;
    }

    .banner-image img {
        height: auto;
        max-height: 200px;
        object-fit: contain;
    }

    .slider-btn {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }

    .slider-nav {
        bottom: 8px;
        gap: 6px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Галерея производства */
    .gallery-main {
        height: 220px;
    }

    .gallery-nav {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .gallery-thumb {
        width: 65px;
        height: 45px;
    }

    .gallery-dots .gallery-dot {
        width: 8px;
        height: 8px;
    }

    .about-text p {
        font-size: 13px;
    }
}