/*******ourStory-banner*********/
.subpage-foods {
    position: relative;
    width: 100%;
    height: 250px;
    background: url('/assests/images/foods-page/food-banner.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage-foods::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.subpage-foods .main-text {
    position: relative;
    font-family: var(--std-font-family);
    background: linear-gradient(90deg, #A57A2C, #D4A94B, #FCEC94, #E4BE69, #FFD77D, #B6903F, #956E2B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
    text-align: center;
    font-weight: 700;
    margin: auto;
    top: 50px;
}

/***responsive***/
/************extra-large screens************/
@media (min-width:1700px) and (max-width:2600px) {
    .subpage-foods .main-text {
        font-size: 70px;
    }
}

/***************larger screens*************/
@media screen and (max-width: 1400px) {
    .subpage-foods .main-text {
        font-size: 40px;
    }
}

@media screen and (max-width: 800px) {
    .subpage-foods .main-text {
        font-size: 30px !important;
    }
}

/***************mobile screens**********/
@media screen and (max-width: 600px) {
    .subpage-foods .main-text {
        font-size: 20px !important;
    }
}

/****overidding global-styles of offer-banner***/
.offer {
    background-color: #101517;
}

.footer {
    background-color: #101517;
}

.video-banner {
    background-color: #101517;
}

/********images-section******/
.images {
    background-color: #101517;
    padding: 20px 0;
}

.images .menu-title-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.images .menu-title {
    font-size: 50px;
    color: #E4BE69;
    font-family: var(--std-font-family);
    width: 50%;
}

.images .menu-title::after {
    content: "";
    flex-grow: 1;
    width: 40%;
    height: 1px;
    display: inline-block;
    background: linear-gradient(90deg, #A57A2C, #D4A94B, #FCEC94, #E4BE69, #FFD77D, #B6903F, #956E2B);
    margin-left: 15px;
}

.images .menu-title-undertext {
    font-size: 30px;
    color: var(--secondary-color);
    font-family: var(--std-font-family);
}

.images .menu-title-undertext span {
    color: #E4BE69;
}

.images .menu-subtitle {
    color: var(--secondary-color);
    font-size: 18px;
    width: 50%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.img-wrapper {
    height: auto;
    /* compact fixed height */
    border-radius: 30px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ---- Celebrity Gallery ---- */
.celebrity-section {
    padding: 10px 0%;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

.celebrity-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 163, 77, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.celebrity-header {
    text-align: center;
    margin-bottom: 56px;
}

.celebrity-header .eyebrow {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4a34d;
    margin-bottom: 16px;
}

.celebrity-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #f5f0e8;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.15;
}

.celebrity-header h2 em {
    font-style: italic;
    color: #d4a34d;
}

.celebrity-header p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #888;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Masonry-style grid */
.celebrity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Featured large tiles */
.celebrity-grid .cel-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.celebrity-grid .cel-item:nth-child(6) {
    grid-column: span 2;
}

.cel-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
    cursor: pointer;
}

.cel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 40%,
            rgba(0, 0, 0, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cel-item:hover::after {
    opacity: 1;
}

.cel-item img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.92) saturate(0.9);
}

.cel-item:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1.1);
}

/* Gold shimmer border on hover */
.cel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, #d4a34d, #f5d78e, #d4a34d) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.cel-item:hover::before {
    opacity: 1;
}

/* Caption on hover */
.cel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 16px;
    z-index: 3;
    transform: translateY(6px);
    opacity: 0;
    transition: all 0.35s ease;
}

.cel-item:hover .cel-caption {
    transform: translateY(0);
    opacity: 1;
}

.cel-caption span {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4a34d;
}

/* Divider accent */
.celebrity-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 56px;
}

.celebrity-divider::before,
.celebrity-divider::after {
    content: '';
    flex: 1;
    max-width: 160px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4a34d44);
}

.celebrity-divider::after {
    background: linear-gradient(to left, transparent, #d4a34d44);
}

.celebrity-divider .diamond {
    width: 8px;
    height: 8px;
    background: #d4a34d;
    transform: rotate(45deg);
    flex-shrink: 0;
}


/* Responsive */
@media (max-width: 900px) {
    .celebrity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .celebrity-grid .cel-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .celebrity-grid .cel-item:nth-child(6) {
        grid-column: span 2;
    }
}

@media (max-width: 560px) {
    .celebrity-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .celebrity-grid .cel-item:nth-child(1),
    .celebrity-grid .cel-item:nth-child(6) {
        grid-column: span 2;
    }

    .celebrity-section {
        padding: 56px 4%;
    }
}


/*******responsive**********/
@media (min-width:1700px) and (max-width:2600px) {
    .images .menu-title {
        font-size: 70px;
    }

    .images .menu-subtitle {
        font-size: 20px;
    }

    .images .menu-title-undertext {
        font-size: 50px;
    }
}

/********large screens******/
@media screen and (max-width: 1400px) {
    .images .menu-title {
        font-size: 40px;
    }

    .images .menu-subtitle {
        font-size: 16px;
    }

    .images .menu-title-undertext {
        font-size: 30px;
    }

    .img-wrapper {
        /* height: 350px; */
    }
}

/******tablets*********/
@media screen and (max-width: 800px) {
    .images .menu-title {
        font-size: 30px;
    }

    .images .menu-subtitle {
        font-size: 14px;
    }

    .images .menu-title-undertext {
        font-size: 20px;
    }

    .grid-container img:nth-child(3n + 1) {
        height: 330px;
    }

    .grid-container img:nth-child(3n + 2) {
        height: 350px;
    }

    .grid-container img:nth-child(3n) {
        height: 330px;
    }
}

@media screen and (max-width: 600px) {
    .images .menu-title-content {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .images .menu-title {
        font-size: 20px;
        width: 100%;
    }

    .images .menu-subtitle {
        font-size: 14px;
        width: 100%;
    }

    .images .menu-title-undertext {
        font-size: 10px;
    }

    .img-wrapper {
        height: auto;
        border-radius: 10px;
    }
}

.celebrity-section {
    /* padding: 70px 5%; */
    background: #0d0d0d;
}

.celebrity-header {
    text-align: center;
    margin-bottom: 36px;
}

.celebrity-header .eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    color: #d4a34d;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.celebrity-header h2 {
    font-size: 2.2rem;
    color: #f5f0e8;
    font-weight: 400;
    margin: 0 0 8px;
}

.celebrity-header em {
    color: #d4a34d;
}

.celebrity-header p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.celebrity-header .divider {
    width: 36px;
    height: 2px;
    background: #d4a34d;
    margin: 14px auto 0;
}

/* LAYOUT */
.celebrity-grid {
    display: flex;
    gap: 10px;
    max-width: 90%;
    margin: auto;
    /* keeps overall size compact */
    margin: auto;
    height: 450px;
    total height of the whole block
}

/* HERO — left side */
.cel-hero {
    flex: 0 0 340px;
    /* fixed width, doesn't shrink */
    border-radius: 12px;
    overflow: hidden;
}

.cel-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.cel-hero:hover img {
    transform: scale(1.04);
}

/* THUMBS — right side 2×2 grid */
.cel-thumbs {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.cel-thumb {
    border-radius: 10px;
    overflow: hidden;
}

.cel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cel-thumb:hover img {
    transform: scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .celebrity-grid {
        flex-direction: column;
        height: auto;
    }

    .cel-hero {
        flex: none;
        height: 220px;
    }

    .cel-thumbs {
        height: 200px;
    }
}