/* ============================================================
   MENU MODE (Page1+)
============================================================ */
.menuMode {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(22px);
}

/* FULLSCREEN GLASS CONTENT */
.menuPage {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 90px 22px 120px 22px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(22px);
}

/* TITLES */
.menu-title {
    text-align: center;
    font-size: 34px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    font-size: 24px;
    color: #ffe9a6;
    margin: 22px 0 14px;
    font-family: "Cormorant Garamond", serif;
}

/* ITEMS */
.menu-item {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.item-name {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.item-price {
    font-size: 16px;
    color: #ffe9a6;
}

.item-desc {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 12px;
    max-width: 85%;
    line-height: 1.3;
    word-wrap: break-word;
}

/* WATERMARK IMAGES */
.img-slot {
    position: absolute;
    opacity: 0.15;
    background: url("../assets/img/logo.png") center/contain no-repeat;
    pointer-events: none;
}

.img-top-right {
    width: 160px;
    height: 140px;
    top: 5px;
    right: 10px;
}

.img-middle {
    width: 230px;
    height: 160px;
    top: 360px;
    left: 50%;
    transform: translateX(-50%);
}

.img-bottom-right {
    width: 180px;
    height: 160px;
    bottom: 10px;
    right: 10px;
}

.home-btn {
    background: transparent;
    border: 1px solid rgba(242,198,84,0.55);
    border-radius: 10px;
    padding: 3px 8px;
    font-size: 0.7rem;
    color: #f2e6b8;
}

/* FLOATING BUTTONS */
.floating-menu-btns {
    position: fixed;
    top: 10px;
    right: 12px;
    display: flex;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 14px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(242,198,84,0.35);
    z-index: 20000;
}

.floating-menu-btns button {
    background: transparent;
    border: 1px solid rgba(242,198,84,0.55);
    border-radius: 12px;
    padding: 4px 12px;
    color: #f2e6b8;
    font-size: 0.75rem;
}

/* PAGE 3 EXTRAS */
.img-top-left {
    width: 140px;
    height: 110px;
    top: 10px;
    left: 10px;
}

.img-bottom-center {
    width: 260px;
    height: 200px;
    bottom: 50px;
    left: 70%;
    transform: translateX(-50%);
}

/* ============================================================
   PAGE 7 — BEER MENU
============================================================ */

.sub-title {
    text-align: center;
    font-size: 18px;
    font-family: "Cormorant Garamond", serif;
    color: #ffe9a6;
    margin: 4px 0 10px;
}

.beer-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0 22px;
}

.beer-left {
    width: 60%;
}

.beer-right {
    width: 40%;
    text-align: right;
}

.beer-name {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.beer-desc {
    font-size: 14px;
    color: #ddd;
    line-height: 1.32;
    margin-top: 4px;
}

.grad,
.sizes,
.beer-price {
    font-size: 14px;
    color: #ffe9a6;
    font-weight: 600;
    margin-top: 3px;
}

.bottle-grid {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}

.bottle-grid .col {
    width: 50%;
}
/* PAGE 8 TOP IMAGES */
.img-top-left.indian-img,
.img-top-right.indian-img {
    opacity: 0.20;
}