/* Стили для страницы меню напитков паба */

.hero-wrapper_2 {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    isolation: isolate;
}

.hero-wrapper_2::before {
    content: "";
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url('/static/image/fon_menu_pub_drinks.png') center/cover no-repeat;
    transform: translate(var(--px, 0), var(--py, 0)) scale(1.08);
    will-change: transform;
    transition: transform .06s linear;
    z-index: -1;
}

.hero-wrapper_2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .75);
    z-index: -1;
}

.main-hero_2 {
    position: relative;
    padding: 150px 0px 60px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
}

.hero-content_2 {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.hero-logo {
    height: clamp(140px, 26vw, 320px);
    width: auto;
    margin-bottom: 20px;
}

.hero-tit {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: clamp(48px, 9vw, 120px);
    margin: 0;
    letter-spacing: .02em;
    color: rgba(190, 190, 190, .76);
}

.hero-op {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(18px, 3vw, 30px);
    color: #fff;
    opacity: .9;
    margin: 0;
}






.menu-section {
    padding: 60px 320px;
    background: #473724; 
    min-height: 100vh;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #d9d9d9;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c4b65e;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.drinks-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.drink-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(196, 182, 94, 0.2);
    gap: 20px;
}

.drink-info {
    flex: 1;
    min-width: 0;
}

.drink-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #e5e4c9;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.drink-details {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #b8b5a0;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
}

.drink-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
}

.price-item {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #e5e4c9;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .menu-section {
        padding: 40px 15px;
    }

    .hero-wrapper_2::before {
        transform: translate(0, 0) scale(1.08) !important;
        transition: none !important;
    }

    .category-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .drinks-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .drink-item {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 20px;
    }

    .drink-prices {
        align-items: flex-start;
        flex-direction: row;
        gap: 15px;
    }

    .drink-name {
        font-size: 20px;
    }

    .drink-details {
        font-size: 14px;
    }

    .price-item {
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width: 1194px) {
    .menu-section {
        padding: 50px 40px;
    }

    .hero-wrapper_2::before {
        transform: translate(0, 0) scale(1.08) !important;
        transition: none !important;
    }

    .category-title {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .drinks-list {
        gap: 25px;
    }

    .drink-name {
        font-size: 22px;
    }

    .drink-details {
        font-size: 15px;
    }

    .price-item {
        font-size: 18px;
    }
}