/* ==========================
   Gallery Section
========================== */

.mz-gallery{
    background:#0f0f0f;
    padding:100px 0;
}

.mz-gallery .container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* Heading */

.mz-gallery .section-heading{
    text-align:center;
    margin-bottom:60px;
}

.mz-gallery .subtitle{
    display:inline-block;
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.mz-gallery h2{
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.mz-gallery p{
    color:#bdbdbd;
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:17px;
}

/* Grid */

.mz-gallery-grid{

    column-count:3;

    column-gap:25px;

    margin-top:70px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    margin-bottom:25px;

    break-inside:avoid;

    background:#1b1b1b;

}
/* ==========================
   Masonry Layout
========================== */


/* Images */
.gallery-item:nth-child(1) img{

    height:640px;

}

.gallery-item:nth-child(2) img{

    height:340px;

}

.gallery-item:nth-child(3) img{

    height:470px;

}

.gallery-item:nth-child(4) img{

    height:360px;

}

.gallery-item:nth-child(5) img{

    height:540px;

}

.gallery-item:nth-child(6) img{

    height:390px;

}
.gallery-item img{

    width:100%;

    display:block;

    height:auto;

    object-fit:cover;

}
/* ==========================
   Premium Hover Effect
========================== */

.gallery-item{

    cursor:pointer;
    position:relative;

}

.gallery-item img{

    transition:0.6s ease;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(212,175,55,.15)
    );

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.45s;

}

.gallery-overlay span{

    color:#fff;

    font-size:18px;

    font-weight:600;

    padding:12px 26px;

    border:1px solid #d4af37;

    border-radius:40px;

    background:rgba(212,175,55,.18);

    backdrop-filter:blur(6px);

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}
/* ==========================
   Gallery Button
========================== */

.gallery-btn{

    text-align:center;
    margin-top:60px;

}

.mz-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 42px;

    background:#d4af37;

    color:#111;

    text-decoration:none;

    font-weight:700;

    border-radius:50px;

    transition:.35s;

    letter-spacing:.5px;

}

.mz-btn:hover{

    background:linear-gradient(135deg,#D4AF37,#F4D06F);

    color:#111;

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(212,175,55,.35);

}
.gallery-item{

    animation:galleryFade .8s ease forwards;

}

.gallery-item:nth-child(1){animation-delay:.10s;}
.gallery-item:nth-child(2){animation-delay:.20s;}
.gallery-item:nth-child(3){animation-delay:.30s;}
.gallery-item:nth-child(4){animation-delay:.40s;}
.gallery-item:nth-child(5){animation-delay:.50s;}
.gallery-item:nth-child(6){animation-delay:.60s;}

@keyframes galleryFade{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
.mz-btn{

display:inline-flex;

align-items:center;

gap:12px;

padding:18px 36px;

border-radius:60px;

background:#d4af37;

color:#111;

font-weight:700;

text-decoration:none;

transition:.4s;

overflow:hidden;

position:relative;

}

.mz-btn:hover{

transform:translateY(-5px);

box-shadow:0 15px 40px rgba(212,175,55,.45);

}

.arrow{

transition:.35s;

}

.mz-btn:hover .arrow{

transform:translateX(8px);

}
.mz-btn::before{

content:'';

position:absolute;

left:-120px;

top:0;

width:80px;

height:100%;

background:rgba(255,255,255,.35);

transform:skewX(-25deg);

transition:.8s;

}

.mz-btn:hover::before{

left:220px;

}
.gallery-menu-btn{

    background:linear-gradient(135deg,#D4AF37,#F4D06F) !important;
    color:#111 !important;

}

.gallery-menu-btn:hover{

    background:linear-gradient(135deg,#D4AF37,#F4D06F) !important;
    color:#111 !important;

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(212,175,55,.35);

}
.gallery-menu-btn{

    position:relative;

    overflow:hidden;

}

.gallery-menu-btn::after{

    content:'';

    position:absolute;

    width:0;

    height:0;

    border-radius:50%;

    background:rgba(255,255,255,.35);

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    transition:.55s;

}

.gallery-menu-btn:hover::after{

    width:320px;

    height:320px;

}
.gallery-menu-btn i,
.gallery-menu-btn span{

    position:relative;

    z-index:2;

}
/* =========================================
   MASALA ZONE - MOBILE GALLERY FINAL FIX
   ========================================= */

@media (max-width: 767px){

    .mz-gallery-grid{
        width:100% !important;
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:20px !important;
    }

    .mz-gallery-grid > *{
        width:100% !important;
        min-width:0 !important;
    }

    .mz-gallery-grid img{
        width:100% !important;
        height:auto !important;
        min-height:0 !important;
        max-height:none !important;
        object-fit:contain !important;
        object-position:center !important;
        display:block !important;
    }

}
/* =========================================================
   GALLERY MODAL BODY LOCK
========================================================= */

body.mz-gallery-modal-open{
    overflow:hidden;
}
/* =========================================================
   OPENING HOURS NOTE - BELOW TIME
========================================================= */

.mz-footer-hours strong{
    display:block;
    width:max-content;
    max-width:100%;
}


.mz-footer-hours small{
    display:block;
    width:100%;
    max-width:260px;
    margin-top:0;
    line-height:1.6;
}


/* Desktop */

@media(min-width:769px){

    .mz-footer-hours{
        display:block;
    }

    .mz-footer-hours strong{
        margin-bottom:10px;
    }

    .mz-footer-hours small{
        margin-top:0;
    }

}