/* ========================================
   СТРАНИЦА АРЕНДЫ ЗАЛА (БАНКЕТЫ)
   ======================================== */

/* ------ ОБЩИЕ ПЕРЕМЕННЫЕ (если не определены в vars.css) ------ */
:root {
    --orange: #EAA854;
    --black: #000;
    --white: #fff;
    --stroke: #C1C1C1;
    --text-gray: #B1B1B1;
    --bg-light: #F7F7F7;
    --font-base: 'Inter', sans-serif;
    /* или ваш шрифт */
}

/* ------ ОСНОВНОЙ БЛОК С ВИДЕО/СЛАЙДЕРОМ ------ */
.rent-hero {
    padding: 40px 0 60px;
    background: var(--bg-light);
}

.rent-hero__grid {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

/* Левая колонка с текстом */
.rent-hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rent-hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}

.rent-hero__desc {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 500px;
    margin-bottom: 40px;
}

.rent-hero__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rent-hero__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--black);
}

.rent-hero__feature img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Правая колонка со слайдером */
.rent-hero__slider-wrap {
    flex: 1.2;
    min-width: 0;
}

.rent-hero__slider {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.rent-hero__slider .swiper-wrapper {
    height: auto;
}

.rent-hero__slide {
    aspect-ratio: 16 / 10;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rent-hero__slide video,
.rent-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rent-hero__slide video {
    background: #000;
}

/* Навигация слайдера */
.rent-hero__nav {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 20px;
}

.rent-hero__nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: transparent;
    border: none;
    font-size: 14px;
    color: var(--black);
    cursor: pointer;
    transition: opacity 0.2s;
}

.rent-hero__nav-btn:hover {
    opacity: 0.7;
}

.rent-hero__nav-btn.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ------ СЕКЦИЯ "ФОРМАТЫ МЕРОПРИЯТИЙ" ------ */
.banquet-section {
    padding: 80px 0;
}

.banquet-section__title {
    font-size: 36px;
    font-family: Geologica, sans-serif;
    font-weight: 100;
    text-align: center;
    margin-bottom: 60px;
}

.banquet-formats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Карточка формата */
.banquet-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    transition: box-shadow 0.2s;
}

.banquet-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.banquet-card__header {
    margin-bottom: 20px;
}

.banquet-card__title {
    font-size: 24px;
    font-family: Geologica, sans-serif;
    font-weight: 100;
    margin-bottom: 6px;
}

.banquet-card__tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--orange);
    background: rgba(234, 168, 84, 0.12);
    padding: 2px 14px;
    border-radius: 30px;
}

.banquet-card__body {
    flex: 1;
    margin-bottom: 24px;
}

.banquet-card__text {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 16px;
}

.banquet-card__list {
    list-style: none;
    padding: 0;
}

.banquet-card__list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.banquet-card__list li:not(:last-child) {
    margin-bottom: 10px;
}

.banquet-card__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.banquet-card__footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.banquet-card__price {
    margin-bottom: 18px;
}

.banquet-card__price-label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.banquet-card__price-value {
    display: block;
    font-size: 22px;
    font-family: Geologica, sans-serif;
    font-weight: 700;
}

.banquet-card__price-note {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Кнопки в карточке */
.button_rent,
.banquet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--orange);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

.button_rent:hover,
.banquet-btn:hover {
    background: #d4943e;
    color: var(--white);
}

.button_rent:active,
.banquet-btn:active {
    transform: scale(0.97);
}

.button--outline {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
}

.button--outline:hover {
    background: var(--orange);
    color: var(--white);
}

.eval-price .eval-payment_content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eval-price img {
    width: 16px;
    height: auto;
}

/* ------ СЕКЦИЯ С ФОРМОЙ ЗАЯВКИ ------ */
.banquet-cta {
    background: var(--bg-light);
    padding: 80px 0;
}

.banquet-cta__inner {
    max-width: 820px;
    margin: 0 auto;
}

.banquet-form {
    background: var(--white);
    padding: 40px 44px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.banquet-form__title {
    font-family: Geologica, sans-serif;
    font-size: 28px;
    font-weight: 100;
    margin-bottom: 8px;
}

.banquet-form__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.banquet-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

.banquet-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.banquet-form__field--full {
    grid-column: 1 / -1;
}

.banquet-form__label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.banquet-form__label span {
    color: #e74c3c;
    margin-left: 4px;
}

.banquet-form__control {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    background: #fafafa;
}

.banquet-form__control:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(234, 168, 84, 0.15);
}

.banquet-form__control--textarea {
    min-height: 100px;
    resize: vertical;
}

.banquet-form__hint {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 4px;
}

.banquet-form__footer {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.banquet-form__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.banquet-form__submit {
    padding: 14px 40px;
    background: var(--orange);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    /* border-radius: 8px; */
    cursor: pointer;
    transition: background 0.2s;
}

.banquet-form__submit:hover {
    background: #d4943e;
}

.banquet-form__note {
    font-size: 14px;
    color: var(--text-gray);
}

.banquet-form__policy {
    font-size: 13px;
    color: var(--text-gray);
}

.banquet-form__policy a {
    color: var(--orange);
    text-decoration: underline;
}

.banquet-form__policy a:hover {
    text-decoration: none;
}

/* ------ УВЕДОМЛЕНИЯ ------ */
.notification-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    width: 100%;
}

.notification {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 18px 24px;
    border-left: 6px solid;
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
    position: relative;
}

.notification.success {
    border-color: #2ecc71;
}

.notification.error {
    border-color: #e74c3c;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-message {
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.error-messages {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.error-message-item {
    font-size: 14px;
    color: #e74c3c;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}

.notification.success .notification-progress {
    background: #2ecc71;
}

.notification.error .notification-progress {
    background: #e74c3c;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(40px);
    }
}

.notification.hiding {
    animation: slideOut 0.3s ease-out forwards;
}

/* ------ АДАПТИВНОСТЬ ------ */
@media (max-width: 1024px) {
    .rent-hero__grid {
        flex-direction: column;
        gap: 40px;
    }

    .rent-hero__content {
        text-align: center;
    }

    .rent-hero__desc {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .rent-hero__features {
        align-items: center;
    }

    .rent-hero__slider-wrap {
        flex: 1 1 auto;
    }

    .rent-hero__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .rent-hero {
        padding: 30px 0 40px;
    }

    .rent-hero__title {
        font-size: 28px;
    }

    .rent-hero__feature {
        font-size: 14px;
    }

    .banquet-section {
        padding: 50px 0;
    }

    .banquet-section__title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .banquet-formats__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .banquet-card {
        padding: 20px;
    }

    .banquet-card__title {
        font-size: 20px;
    }

    .banquet-form {
        padding: 24px 16px;
    }

    .banquet-form__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .banquet-form__title {
        font-size: 22px;
    }

    .banquet-form__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .banquet-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .banquet-form__submit {
        width: 100%;
        text-align: center;
    }

    .notification-container {
        top: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }

    .rent-hero__nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .rent-hero__title {
        font-size: 22px;
    }

    .rent-hero__desc {
        font-size: 16px;
    }

    .banquet-card__price-value {
        font-size: 18px;
    }

    .banquet-form__control {
        font-size: 14px;
    }
}

/* ========================================
   СЕКЦИЯ С КАРУСЕЛЬЮ (АРЕНДА ЗАЛА)
   ======================================== */

/* Основной контейнер секции */
.content.main_page.carousel {
    display: flex;
    gap: 60px;
    padding: 60px 0 80px;
    align-items: stretch;
/*    background: #F7F7F7;*/
    /* или ваш цвет фона */
}

/* Левая колонка с текстом */
.main_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.main_text h1 {
    font-family: Geologica, sans-serif;
    font-weight: 100;
    color: var(--black);
    text-transform: uppercase;
    font-size: 2.37vw;
}

.main_text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 480px;
    margin: 0;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.price-list_point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: #000;
}

.price-list_point img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Правая колонка со слайдером */
.right_container {
    flex: 1.2;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Слайдер (swiper) */
.swiper-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background: #ddd;
}

.swiper-wrapper {
    height: auto;
    aspect-ratio: 16 / 10;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

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

.swiper-slide video {
    background: #000;
}

/* Стрелки навигации под слайдером */
.arrow_container {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 20px;
}

.arrow_container a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
    border: none;
    background: transparent;
}

.arrow_container a:hover {
    opacity: 0.7;
}

.arrow_container a.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .content.main_page.carousel {
        flex-direction: column;
        gap: 40px;
        padding: 40px 0;
    }

    .main_text {
        text-align: center;
    }

    .main_text p {
        max-width: 100%;
        margin: 0 auto;
    }

    .price-list {
        align-items: center;
    }

    .main_text h1 {
        font-size: 34px;
    }

    .arrow_container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main_text h1 {
        font-size: 28px;
    }

    .main_text p {
        font-size: 16px;
    }

    .price-list_point {
        font-size: 14px;
    }

    .swiper-wrapper {
        aspect-ratio: 16 / 9;
    }

    .arrow_container a {
        font-size: 13px;
        padding: 6px 14px;
    }
}


/* ========================================
   СЕКЦИЯ АРЕНДЫ (ВЕРХНЯЯ ЧАСТЬ С ВИДЕО/СЛАЙДЕРОМ)
   ======================================== */

/* Основной контейнер секции */
.content.main_page.carousel {
    display: flex;
    gap: 60px;
    padding: 80px 0 60px;
    align-items: stretch;
/*    background: #F7F7F7;*/
}

/* Левая колонка с текстом */
.main_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}



.main_text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 500px;
    margin: 0 0 10px 0;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.price-list_point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: #000;
}

.price-list_point img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Правая колонка со слайдером */
.right_container {
    flex: 1.2;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Слайдер (swiper) */
.swiper-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background: #ddd;
}

.swiper-wrapper {
    height: auto;
    aspect-ratio: 16 / 10;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

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

.swiper-slide video {
    background: #000;
}

/* Стрелки навигации под слайдером */
.arrow_container {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 20px;
}

.arrow_container a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
    border: none;
    background: transparent;
}

.arrow_container a:hover {
    opacity: 0.7;
}

.arrow_container a.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ========================================
   АДАПТИВНОСТЬ
   ======================================== */

@media (max-width: 1024px) {
    .content.main_page.carousel {
        flex-direction: column;
        gap: 40px;
        padding: 50px 0 70px;
    }

    .main_text {
        text-align: center;
        align-items: center;
    }

    .main_text p {
        max-width: 100%;
    }

    .price-list {
        align-items: flex-start;
        width: 100%;
        max-width: 480px;
    }

    .main_text h1 {
        font-size: 34px;
    }

    .arrow_container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .content.main_page.carousel {
        padding: 30px 0 50px;
        gap: 30px;
    }

    .main_text h1 {
        font-size: 28px;
    }

    .main_text p {
        font-size: 16px;
    }

    .price-list_point {
        font-size: 14px;
        gap: 12px;
    }

    .price-list_point img {
        width: 24px;
        height: 24px;
    }

    .swiper-wrapper {
        aspect-ratio: 16 / 9;
    }

    .arrow_container a {
        font-size: 13px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .main_text h1 {
        font-size: 22px;
    }

    .main_text p {
        font-size: 15px;
    }

    .price-list_point {
        font-size: 13px;
    }

    .price-list_point img {
        width: 20px;
        height: 20px;
    }

    .arrow_container a {
        font-size: 12px;
        padding: 4px 12px;
    }

    .swiper-container {
        border-radius: 12px;
    }
}