/* ===================================================
   BAR ABOUT & DRINKS CAROUSEL SECTION (AFTER HERO BANNER)
   =================================================== */
.bar-about-drinks-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    background-image: url('../images/bar_page/Dyore-Experiences-bg.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100% 100%;
    overflow: hidden;
    padding: 0px 0 50px 0;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    min-height: 920px;
}

/* Container & Right Content Column */
.bar-about-drinks-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    box-sizing: border-box;
    z-index: 2;
}

.bar-about-drinks-content {
    width: 70%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    box-sizing: border-box;
}

.bar-about-drinks-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #151312;
    margin: 0 0 24px 0;
}

.bar-about-drinks-desc {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: #4a4a4a;
    margin: 0 0 16px 0;
}

.bar-about-drinks-desc:last-of-type {
    margin-bottom: 30px;
}

/* Capsule / Pill Carousel Container */
.drinks-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.drinks-capsule-bg {
    background-color: #f1f1f1;
    border-top-left-radius: 140px;
    border-bottom-left-radius: 140px;
    padding: 0px 0 24px 50px;
    position: relative;
    overflow: hidden;
    width: calc(100% + 15vw);
    margin-right: -15vw;
}

.drinks-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.drinks-carousel-viewport:active {
    cursor: grabbing;
}

.drinks-carousel-track {
    display: flex;
    gap: 36px;
    width: max-content;
    will-change: transform;
    transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Individual Drink Slide */
.drink-item {
    flex: 0 0 170px;
    width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    transition: transform 0.35s ease;
}

.drink-item:hover {
    transform: translateY(-4px);
}

.drink-img-wrap {
    width: 100%;
    height: 210px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 14px;
    background: transparent;
}

.drink-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    background: transparent;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

.drink-name {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #151312;
    margin: 0;
    white-space: nowrap;
}

/* Progress Bar */
.drinks-slider-progress-wrap {
    width: 280px;
    height: 2px;
    background-color: #e2e2e2;
    margin: 28px auto 0 auto;
    position: relative;
    overflow: hidden;
}

.drinks-slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background-color: #151312;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .bar-about-drinks-section {
        background-size: 100% auto;
    }

    .bar-about-drinks-content {
        width: 55%;
    }

    .bar-about-drinks-title {
        font-size: 34px;
    }

    .drink-item {
        flex: 0 0 150px;
        width: 150px;
    }

    .drink-img-wrap {
        height: 170px;
    }
}

@media (max-width: 992px) {

    .bar-circle-card {
        display: none !important;
    }

    .bar-hero-banner {
        background-image: url('https://dyorexperiences.in/wp-content/uploads/2026/08/bar-phone-banner.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
    }

    .bar-about-drinks-section {
        height: auto;
        min-height: auto;
        padding: 60px 0 80px 0;
        background-image: none !important;
        background-color: #ffffff;
    }

    .bar-about-drinks-container {
        flex-direction: column;
        align-items: center;
        padding: 0 24px;
        justify-content: center;
    }

    .bar-about-drinks-content {
        width: 100%;
        max-width: 100%;
        padding-top: 0;
        align-items: center;
        text-align: center;
    }

    .bar-about-drinks-title {
        text-align: center;
        font-size: 28px;
        margin-bottom: 18px;
    }

    .bar-about-drinks-desc {
        text-align: center;
        font-size: 14px;
        line-height: 1.75;
        max-width: 680px;
    }

    .drinks-capsule-bg {
        width: 100%;
        margin-right: 0;
        border-radius: 40px;
        padding: 24px 20px;
    }
}

@media (max-width: 576px) {
    .bar-about-drinks-section {
        padding: 50px 0 60px 0;
        background-image: none !important;
    }

    .bar-about-drinks-container {
        padding: 0 16px;
    }

    .bar-about-drinks-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .bar-about-drinks-desc {
        font-size: 13.5px;
        line-height: 1.7;
    }

    .drink-item {
        flex: 0 0 130px;
        width: 130px;
    }

    .drink-img-wrap {
        height: 140px;
    }

    .drink-name {
        font-size: 10px;
    }
}

.map-section {
    margin-top: 100px;
}


/* ===================================================
   VIDEO GALLERY CAROUSEL SECTION
   =================================================== */
.video-gallery-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 20px 0 100px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.video-gallery-header-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    padding: 0 20px;
}

.video-gallery-emblem {
    width: 37px;
    height: auto;
    margin-bottom: 14px;
    /* Magenta tint to match #97033C */
    filter: invert(13%) sepia(85%) saturate(5200%) hue-rotate(330deg) brightness(85%) contrast(105%);
}

.video-gallery-subtitle {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #151312;
    margin-bottom: 10px;
}

.video-gallery-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #151312;
    margin: 0;
    text-align: center;
}

/* Carousel Viewport & Infinite Track */
.video-gallery-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 20px;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.video-gallery-viewport.is-dragging {
    cursor: grabbing;
}

.video-gallery-viewport:active {
    cursor: grabbing;
}

.video-gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Individual Video Cards */
.video-card {
    flex: 0 0 350px;
    width: 350px;
    height: 520px;
    position: relative;
    overflow: hidden;
    background-color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.video-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .video-gallery-title {
        font-size: 30px;
    }

    .video-card {
        flex: 0 0 300px;
        width: 300px;
        height: 460px;
    }
}

@media (max-width: 768px) {

    .map-section {
        margin-top: 50px;
    }

    .video-gallery-section {
        padding: 40px 0 45px 0 !important;
    }

    .video-gallery-header-stack {
        margin-bottom: 28px;
        padding: 0 16px;
    }

    .video-gallery-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .video-gallery-viewport {
        padding: 10px 24px 20px;
    }

    .video-gallery-track {
        gap: 20px;
    }

    .video-card {
        flex: 0 0 calc(100vw - 48px);
        width: calc(100vw - 48px);
        max-width: 420px;
        height: 520px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .video-gallery-header-stack {
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .video-gallery-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .video-gallery-subtitle {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .video-gallery-viewport {
        padding: 10px 16px 20px;
    }

    .video-gallery-track {
        gap: 16px;
    }

    .video-card {
        flex: 0 0 calc(100vw - 32px);
        width: calc(100vw - 32px);
        max-width: 360px;
        height: 490px;
        border-radius: 10px;
    }
}