/* ============================================
   СЕКЦИЯ ХОЛЛЫ
   ============================================ */

.halls-section {
    padding: 80px 0;
    background: #fff;
}

/* Основной контейнер */
.halls-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/* ========== ЛЕВАЯ ЧАСТЬ (Контент) ========== */
.halls-content {
    flex: 0 1 45%;
    gap: 22px;
    display: flex;
    flex-direction: column;
}

/* Заголовок H3 */
.halls-title {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

/* Кнопки переключения блоков */
.halls-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.hall-btn {
    padding: 12px 24px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 25px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hall-btn:hover {
    background: #e8e8e8;
}

.hall-btn.active {
    background: #856639;
    color: #fff;
    border-color: #856639;
}

/* Субтитул */
.halls-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: #1a1a1a;
    margin: 0;
}

/* Описание */
.halls-desc {
    line-height: 25px;
    color: #717676;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
}

.halls-desc p {
    margin: 0 0 15px 0;
}

.halls-desc p:last-child {
    margin-bottom: 0;
}

.halls-desc strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* ========== ПРАВАЯ ЧАСТЬ (Галерея) ========== */
.halls-gallery {
    outline: none;
    width: 583px;
    position: relative;
}

/* Слайдер */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Кнопки навигации слайдера */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Индикатор слайдов */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #d9d9d9;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #b3b3b3;
}

.dot.active {
    background: #856639;
    width: 30px;
    border-radius: 5px;
}