/* ============================================
   MEHFIL — HOME PAGE STYLES
   Section 1: Hero
   ============================================ */

/* ---------- Hero Section ---------- */
.mf-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Hero Slider Container */
.mf-hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mf-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.mf-hero__slide--active {
    opacity: 1;
}

.mf-hero__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Subtle Ken Burns zoom */
    animation: mfKenBurns 20s ease-in-out infinite alternate;
}

@keyframes mfKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Gradient Overlay — warm directional fade */
.mf-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg,
            rgba(11, 11, 15, 0.92) 0%,
            rgba(11, 11, 15, 0.75) 40%,
            rgba(11, 11, 15, 0.45) 70%,
            rgba(11, 11, 15, 0.3) 100%
        );
}

/* Warm ambient glow — the "mehfil" candle-light feel */
.mf-hero__overlay::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 160, 74, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero Content */
.mf-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-top: 2rem;
    margin-left: 0;
    margin-right: auto;
    padding-left: 7.5rem;
}

/* Eyebrow / Tagline */
.mf-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: mfFadeUp 0.8s var(--mf-ease-out) 0.3s forwards;
}

.mf-hero__tag::before {
    content: '';
    width: 35px;
    height: 1px;
    background: var(--mf-gold);
}

.mf-hero__tag span {
    font-family: var(--mf-font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mf-gold);
}

/* Heading */
.mf-hero__title {
    font-family: var(--mf-font-display);
    font-size: clamp(2.75rem, 5vw + 0.25rem, 4rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--mf-text-primary);
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(30px);
    animation: mfFadeUp 0.8s var(--mf-ease-out) 0.5s forwards;
}

.mf-hero__title-accent {
    color: var(--mf-gold);
    display: inline;
}

/* Description */
.mf-hero__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--mf-text-secondary);
    max-width: 500px;
    margin-bottom: 2.25rem;
    opacity: 0;
    transform: translateY(20px);
    animation: mfFadeUp 0.8s var(--mf-ease-out) 0.7s forwards;
}

/* CTA Buttons */
.mf-hero__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: mfFadeUp 0.8s var(--mf-ease-out) 0.9s forwards;
}

/* Halal Badge on Hero */
.mf-hero__badge {
    position: absolute;
    right: var(--mf-gutter);
    bottom: 120px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: mfFadeUp 0.8s var(--mf-ease-out) 1.2s forwards;
}

.mf-hero__badge img {
    width: 65px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.4;
}

.mf-hero__badge span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* Slide Indicators */
.mf-hero__indicators {
    position: absolute;
    left: var(--mf-gutter);
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    animation: mfFadeUp 0.8s var(--mf-ease-out) 1s forwards;
}

.mf-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    cursor: pointer;
    transition: all var(--mf-duration-fast) var(--mf-ease);
    padding: 0;
}

.mf-hero__dot--active {
    background: var(--mf-gold);
    border-color: var(--mf-gold);
    box-shadow: 0 0 10px rgba(212, 160, 74, 0.4);
}

.mf-hero__dot:hover {
    border-color: var(--mf-gold-light);
}

/* Scroll Down Indicator */
.mf-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: mfFadeUp 0.8s var(--mf-ease-out) 1.3s forwards;
}

.mf-hero__scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-lr;
}

.mf-hero__scroll-line {
    width: 1px;
    height: 40px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.mf-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--mf-gold);
    animation: mfScrollLine 2s ease-in-out infinite;
}

@keyframes mfScrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}


/* ---------- Animations ---------- */
@keyframes mfFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .mf-hero__content {
        padding-left: 0;
    }

    .mf-hero__indicators {
        left: auto;
        right: var(--mf-gutter);
        top: auto;
        bottom: 2.5rem;
        flex-direction: row;
        transform: none;
    }

    .mf-hero__badge {
        bottom: 140px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mf-hero {
        min-height: 90vh;
        min-height: 90dvh;
        align-items: flex-end;
        padding-bottom: 5rem;
    }

    .mf-hero__overlay {
        background:
            linear-gradient(180deg,
                rgba(11, 11, 15, 0.4) 0%,
                rgba(11, 11, 15, 0.6) 30%,
                rgba(11, 11, 15, 0.92) 70%,
                rgba(11, 11, 15, 0.98) 100%
            );
    }

    .mf-hero__content {
        max-width: 100%;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .mf-hero__tag {
        justify-content: center;
    }

    .mf-hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .mf-hero__title {
        font-size: clamp(2.25rem, 8vw, 3.25rem);
    }

    .mf-hero__desc {
        font-size: 0.95rem;
    }

    .mf-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .mf-hero__actions .mf-btn {
        width: 100%;
        max-width: 360px;
        text-align: center;
        justify-content: center;
    }

    .mf-hero__badge {
        display: none;
    }

    .mf-hero__indicators {
        left: 0;
        right: 0;
        bottom: 1.5rem;
        transform: none;
        display: flex;
        justify-content: center;
        flex-direction: row;
        width: 100%;
        margin: 0;
    }

    .mf-hero__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .mf-hero {
        min-height: 85vh;
    }

    .mf-hero__tag span {
        font-size: 0.7rem;
    }
}


/* ============================================
   Section 2: Popular Menu Items
   ============================================ */

.mf-popular {
    padding: var(--mf-space-5xl) 0;
    background: var(--mf-bg-primary);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.mf-popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(212, 160, 74, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(196, 48, 48, 0.03) 0%, transparent 50%);
    pointer-events: none;
}


/* ---------- Section Header ---------- */
.mf-popular__header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.mf-popular__header .mf-subheading {
    display: block;
    margin-bottom: 0.75rem;
}

.mf-popular__title {
    margin-bottom: 1rem;
}

.mf-popular__title-accent {
    color: var(--mf-gold);
}

.mf-popular__desc {
    font-size: 1.05rem;
    color: var(--mf-text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ---------- Carousel Wrapper ---------- */
.mf-popular__carousel-wrap {
    position: relative;
    z-index: 1;
}


/* ---------- Scrollable Track ---------- */
.mf-popular__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mf-popular__track::-webkit-scrollbar {
    display: none;
}


/* ---------- Card ---------- */
.mf-popular__card {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 260px;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--mf-radius-lg);
    overflow: hidden;
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    transition: all var(--mf-duration) var(--mf-ease);
    display: flex;
    flex-direction: column;
}

.mf-popular__card:hover {
    border-color: rgba(212, 160, 74, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35),
                0 0 0 1px rgba(212, 160, 74, 0.1);
    transform: translateY(-6px);
}

/* Card Image */
.mf-popular__card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.mf-popular__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--mf-duration-slow) var(--mf-ease);
}

.mf-popular__card:hover .mf-popular__card-img img {
    transform: scale(1.08);
}

.mf-popular__card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--mf-bg-card), transparent);
    pointer-events: none;
}

/* Card Body */
.mf-popular__card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mf-popular__card-name {
    font-family: var(--mf-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mf-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.mf-popular__card-desc {
    font-size: 0.875rem;
    color: var(--mf-text-secondary);
    line-height: 1.55;
    flex: 1;
}

/* Card Link Arrow */
.mf-popular__card-link {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 160, 74, 0.1);
    color: var(--mf-gold);
    font-size: 0.8rem;
    transition: all var(--mf-duration) var(--mf-ease);
    opacity: 0;
    transform: translateX(-8px);
}

.mf-popular__card:hover .mf-popular__card-link {
    opacity: 1;
    transform: translateX(0);
}

.mf-popular__card-link:hover {
    background: var(--mf-gold);
    color: var(--mf-text-inverse);
}


/* ---------- Navigation Arrows ---------- */
.mf-popular__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mf-bg-secondary);
    border: 1px solid var(--mf-border);
    color: var(--mf-text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--mf-duration-fast) var(--mf-ease);
    box-shadow: var(--mf-shadow-md);
}

.mf-popular__arrow:hover {
    background: var(--mf-gold);
    border-color: var(--mf-gold);
    color: var(--mf-text-inverse);
}

.mf-popular__arrow--prev { left: -24px; }
.mf-popular__arrow--next { right: -24px; }

.mf-popular__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.mf-popular__arrow:disabled:hover {
    background: var(--mf-bg-secondary);
    color: var(--mf-text-primary);
    border-color: var(--mf-border);
}


/* ---------- View Full Menu CTA ---------- */
.mf-popular__cta {
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}


/* ========== RESPONSIVE — Section 2 ========== */

@media (max-width: 1340px) {
    .mf-popular__arrow--prev { left: 0; }
    .mf-popular__arrow--next { right: 0; }
}

@media (max-width: 1024px) {
    .mf-popular__card {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .mf-popular {
        padding: var(--mf-space-4xl) 0;
    }

    .mf-popular__header {
        margin-bottom: 2.5rem;
    }

    .mf-popular__card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 220px;
    }

    .mf-popular__arrow {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .mf-popular__arrow--prev { left: 0.25rem; }
    .mf-popular__arrow--next { right: 0.25rem; }

    .mf-popular__card-link {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .mf-popular__card {
        flex: 0 0 82%;
        min-width: 0;
    }

    .mf-popular__track {
        gap: 1rem;
        padding-left: 0.25rem;
    }

    .mf-popular__arrow {
        display: none;
    }

    .mf-popular__card-body {
        padding: 1rem 1.25rem 1.25rem;
    }

    .mf-popular__card-name {
        font-size: 1.1rem;
    }
}


/* ============================================
   Section 3: Order Delivery
   ============================================ */

.mf-delivery {
    padding: var(--mf-space-5xl) 0;
    background: var(--mf-bg-secondary);
    position: relative;
    overflow: hidden;
}

.mf-delivery::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 160, 74, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(196, 48, 48, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

/* ---------- Section Header ---------- */
.mf-delivery__header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.mf-delivery__header .mf-subheading {
    display: block;
    margin-bottom: 0.75rem;
}

.mf-delivery__title {
    margin-bottom: 1rem;
}

.mf-delivery__title-accent {
    color: var(--mf-gold);
}

.mf-delivery__desc {
    font-size: 1.05rem;
    color: var(--mf-text-secondary);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Grid ---------- */
.mf-delivery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

/* ---------- Card ---------- */
.mf-delivery__card {
    --brand: var(--mf-gold);
    --brand-glow: rgba(212, 160, 74, 0.25);
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--mf-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--mf-duration) var(--mf-ease);
    position: relative;
    overflow: hidden;
}

.mf-delivery__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--mf-duration) var(--mf-ease);
}

.mf-delivery__card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: 0 12px 40px var(--brand-glow);
}

.mf-delivery__card:hover::before {
    transform: scaleX(1);
}

/* Brand colors */
.mf-delivery__card--ubereats {
    --brand: #06C167;
    --brand-glow: rgba(6, 193, 103, 0.25);
}

.mf-delivery__card--skip {
    --brand: #FF8000;
    --brand-glow: rgba(255, 128, 0, 0.25);
}

.mf-delivery__card--doordash {
    --brand: #FF3008;
    --brand-glow: rgba(255, 48, 8, 0.25);
}

/* Icon Circle */
/* Icon Circle */
.mf-delivery__icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: transform var(--mf-duration) var(--mf-ease);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.mf-delivery__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mf-delivery__card:hover .mf-delivery__icon {
    transform: scale(1.08) rotate(-4deg);
}

.mf-delivery__name {
    font-family: var(--mf-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mf-text-primary);
    margin-bottom: 0.5rem;
}

.mf-delivery__tagline {
    font-size: 0.9rem;
    color: var(--mf-text-secondary);
    margin-bottom: 1.75rem;
}

/* Order Now Button */
.mf-delivery__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: var(--mf-radius-sm);
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all var(--mf-duration-fast) var(--mf-ease);
}

.mf-delivery__btn:hover {
    filter: brightness(1.12);
    box-shadow: 0 4px 20px var(--brand-glow);
}

.mf-delivery__btn .mf-btn__icon {
    transition: transform var(--mf-duration-fast) var(--mf-ease);
}

.mf-delivery__btn:hover .mf-btn__icon {
    transform: translateX(3px);
}

/* ========== RESPONSIVE — Section 3 ========== */

@media (max-width: 900px) {
    .mf-delivery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mf-delivery {
        padding: var(--mf-space-4xl) 0;
    }

    .mf-delivery__header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 600px) {
    .mf-delivery__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .mf-delivery__card {
        padding: 2rem 1.5rem;
    }
}


/* ============================================
   Section 4: About Mehfil Restaurant
   ============================================ */

.mf-about {
    padding: var(--mf-space-5xl) 0;
    background: var(--mf-bg-primary);
    position: relative;
    overflow: hidden;
}

.mf-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 3.5rem;
    align-items: stretch;
}

/* ---------- Media / Video ---------- */
.mf-about__media-frame {
    position: relative;
    border-radius: var(--mf-radius-xl);
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    min-height: 480px;
    box-shadow: var(--mf-shadow-lg);
}

.mf-about__media-img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mf-about__media-video {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--mf-duration) var(--mf-ease);
    background: #000;
    display: block;
}

.mf-about__media-frame--playing .mf-about__media-img,
.mf-about__media-frame--playing .mf-about__play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mf-about__media-frame--playing .mf-about__media-video {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mf-about__media-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,11,15,0.05) 0%, rgba(11,11,15,0.5) 100%);
    pointer-events: none;
}

.mf-about__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--mf-gold);
    color: var(--mf-text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    transition: all var(--mf-duration) var(--mf-ease);
}

.mf-about__play::before,
.mf-about__play::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(245, 239, 230, 0.5);
    animation: mfPulseRing 2.4s ease-out infinite;
}

.mf-about__play::after {
    animation-delay: 1.2s;
}

@keyframes mfPulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.9); opacity: 0; }
}

.mf-about__play:hover {
    background: var(--mf-gold-light);
    transform: translate(-50%, -50%) scale(1.08);
}


/* ---------- Content ---------- */
.mf-about__content .mf-subheading {
    display: block;
    margin-bottom: 0.75rem;
}

.mf-about__title {
    margin-bottom: 1.25rem;
}

.mf-about__title-accent {
    color: var(--mf-gold);
}

.mf-about__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--mf-text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
}


/* ---------- FAQ Accordion ---------- */
.mf-about__faq {
    margin-bottom: 2rem;
    border-top: 1px solid var(--mf-border);
}

.mf-about__faq-item {
    border-bottom: 1px solid var(--mf-border);
}

.mf-about__faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    text-align: left;
    font-family: var(--mf-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mf-text-primary);
    transition: color var(--mf-duration-fast) var(--mf-ease);
}

.mf-about__faq-item--active .mf-about__faq-question {
    color: var(--mf-gold);
}

.mf-about__faq-question:hover {
    color: var(--mf-gold);
}

.mf-about__faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--mf-text-secondary);
    transition: all var(--mf-duration) var(--mf-ease);
}

.mf-about__faq-item--active .mf-about__faq-icon {
    background: var(--mf-gold);
    color: var(--mf-text-inverse);
    border-color: var(--mf-gold);
    transform: rotate(135deg);
}

.mf-about__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--mf-duration) var(--mf-ease);
}

.mf-about__faq-item--active .mf-about__faq-answer {
    max-height: 220px;
}

.mf-about__faq-answer p {
    padding: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--mf-text-secondary);
    max-width: 480px;
}


/* ========== RESPONSIVE — Section 4 ========== */

@media (max-width: 1024px) {
    .mf-about__grid {
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .mf-about__grid {
        grid-template-columns: 1fr;
    }

    .mf-about__media {
        height: auto;
    }

    .mf-about__media-frame {
        flex: none;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mf-about {
        padding: var(--mf-space-4xl) 0;
    }

    .mf-about__desc,
    .mf-about__faq-answer p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .mf-about__play {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .mf-about__faq-question {
        font-size: 0.95rem;
        padding: 1rem 0;
    }
}

/* ============================================
   Section 5: Watch and Savor (Video Background)
   ============================================ */

.mf-savor {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

/* ---------- Video Background ---------- */
.mf-savor__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mf-savor__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mf-savor__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 11, 15, 0.78) 0%,
        rgba(11, 11, 15, 0.55) 50%,
        rgba(11, 11, 15, 0.78) 100%
    );
}


/* ---------- Content ---------- */
.mf-savor__content {
    position: relative;
    z-index: 1;
    padding: var(--mf-space-4xl) 0;
}

.mf-savor__eyebrow {
    font-family: var(--mf-font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: var(--mf-text-primary);
    margin-bottom: 0.75rem;
    max-width: 480px;
}

.mf-savor__title {
    font-family: var(--mf-font-body);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--mf-text-primary);
    text-transform: uppercase;
}


/* ========== RESPONSIVE — Section 5 ========== */

@media (max-width: 768px) {
    .mf-savor {
        min-height: 45vh;
    }

    .mf-savor__content {
        padding: var(--mf-space-3xl) 0;
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .mf-savor__eyebrow {
        font-size: 0.9rem;
    }

    .mf-savor__title {
        font-size: clamp(2rem, 11vw, 3rem);
    }
}

/* ============================================
   Section 6: Full Menu (Tabbed)
   ============================================ */

.mf-menu {
    padding: var(--mf-space-5xl) 0;
    background: var(--mf-bg-primary);
}

/* ---------- Header ---------- */
.mf-menu__header {
    text-align: center;
    margin-bottom: 3rem;
}

.mf-menu__header .mf-subheading {
    display: block;
    margin-bottom: 0.75rem;
}

.mf-menu__title-accent {
    color: var(--mf-gold);
}

/* ---------- Tabs ---------- */
.mf-menu__tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.mf-menu__tab {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--mf-radius-full);
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--mf-duration-fast) var(--mf-ease);
}

.mf-menu__tab i,
.mf-menu__tab span {
    color: var(--mf-text-secondary);
    transition: color var(--mf-duration-fast) var(--mf-ease);
}

.mf-menu__tab i {
    font-size: 0.95rem;
}

/* Hover state — force icon + label color explicitly */
.mf-menu__tab:hover {
    border-color: var(--mf-gold);
    background: rgba(212, 160, 74, 0.08);
}

.mf-menu__tab:hover i,
.mf-menu__tab:hover span {
    color: var(--mf-gold-light);
}

/* Active state — force icon + label to dark inverse color */
.mf-menu__tab--active {
    background: var(--mf-gold);
    border-color: var(--mf-gold);
}

.mf-menu__tab--active i,
.mf-menu__tab--active span {
    color: var(--mf-text-inverse);
}

/* Active + hovered at the same time — keep it dark, not gold-on-gold */
.mf-menu__tab--active:hover i,
.mf-menu__tab--active:hover span {
    color: var(--mf-text-inverse);
}

/* ---------- Panels ---------- */
.mf-menu__panel {
    display: none;
}

.mf-menu__panel--active {
    display: block;
    animation: mfFadeUp 0.5s var(--mf-ease-out);
}

/* ---------- Grid ---------- */
.mf-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

/* ---------- Item Card ---------- */
.mf-menu__item {
    border: 1px dashed var(--mf-border-light);
    border-radius: var(--mf-radius-md);
    padding: 1.5rem 1.75rem;
    transition: all var(--mf-duration-fast) var(--mf-ease);
}

.mf-menu__item:hover {
    border-color: var(--mf-gold);
    background: rgba(212, 160, 74, 0.03);
}

.mf-menu__item-top {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.mf-menu__item-name {
    font-family: var(--mf-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

/* Dotted leader between name and price */
.mf-menu__item-top::after {
    content: '';
    flex: 1;
    border-bottom: 2px dotted var(--mf-border-light);
    margin-bottom: 0.35rem;
    order: 2;
}

.mf-menu__item-price {
    order: 3;
    flex-shrink: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--mf-radius-sm);
    white-space: nowrap;
}

.mf-menu__item-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--mf-text-secondary);
}

/* ========== RESPONSIVE — Section 6 ========== */

@media (max-width: 900px) {
    .mf-menu__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mf-menu {
        padding: var(--mf-space-4xl) 0;
    }

    .mf-menu__header {
        margin-bottom: 2rem;
    }

    .mf-menu__tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
        margin-bottom: 2rem;
        scrollbar-width: none;
    }

    .mf-menu__tabs::-webkit-scrollbar {
        display: none;
    }

    .mf-menu__tab {
        flex-shrink: 0;
        padding: 0.7rem 1.1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .mf-menu__item {
        padding: 1.25rem 1.25rem;
    }

    .mf-menu__item-name {
        font-size: 1rem;
    }

    .mf-menu__item-top {
        flex-wrap: wrap;
    }

    .mf-menu__item-top::after {
        display: none;
    }
}


/* ============================================
   Section 7: Event Hall
   ============================================ */

.mf-eventhall {
    padding: var(--mf-space-5xl) 0;
    background: var(--mf-bg-secondary);
    position: relative;
    overflow: hidden;
}

.mf-eventhall::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(212, 160, 74, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.mf-eventhall__grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 3.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ---------- Info Column ---------- */
.mf-eventhall__info {
    padding-top: 0.5rem;
}

.mf-eventhall__info .mf-subheading {
    display: block;
    margin-bottom: 0.75rem;
}

.mf-eventhall__title {
    margin-bottom: 1.25rem;
}

.mf-eventhall__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--mf-text-secondary);
    margin-bottom: 2rem;
    max-width: 440px;
}

.mf-eventhall__highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.mf-eventhall__highlights li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.98rem;
    color: var(--mf-text-primary);
    font-weight: 500;
}

.mf-eventhall__highlights i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212, 160, 74, 0.1);
    color: var(--mf-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ---------- Form Card ---------- */
.mf-eventhall__form-card {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--mf-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--mf-shadow-md);
}

.mf-eventhall__form-title {
    font-family: var(--mf-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mf-text-primary);
    margin-bottom: 1.75rem;
    text-align: center;
}

/* ---------- Form Layout ---------- */
.mf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.mf-form-group {
    margin-bottom: 1.25rem;
}

.mf-form-row .mf-form-group {
    margin-bottom: 0;
}

.mf-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mf-text-primary);
    margin-bottom: 0.5rem;
}

.mf-required {
    color: var(--mf-red);
}

.mf-form-group input[type="text"],
.mf-form-group input[type="email"],
.mf-form-group input[type="tel"],
.mf-form-group input[type="number"],
.mf-form-group input[type="date"],
.mf-form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--mf-bg-secondary);
    border: 1px solid var(--mf-border-light);
    border-radius: var(--mf-radius-sm);
    color: var(--mf-text-primary);
    font-size: 0.92rem;
    transition: border-color var(--mf-duration-fast) var(--mf-ease);
}

.mf-form-group input::placeholder {
    color: var(--mf-text-muted);
}

.mf-form-group input:focus,
.mf-form-group select:focus {
    border-color: var(--mf-gold);
}

.mf-form-group input[type="date"] {
    color-scheme: dark;
}

.mf-form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%239A9590' stroke-width='1.5' fill='none' fill-rule='evenodd'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Icon-prefixed inputs */
.mf-form-input-icon {
    position: relative;
}

.mf-form-input-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mf-text-muted);
    font-size: 0.85rem;
    pointer-events: none;
}

.mf-form-input-icon input {
    padding-left: 2.6rem !important;
}

/* Phone field: code select + number combined */
.mf-form-phone {
    display: flex;
    gap: 0.5rem;
}

.mf-form-phone select {
    flex: 0 0 90px;
    padding-left: 0.6rem;
    padding-right: 1.8rem;
}

.mf-form-phone input {
    flex: 1;
}

/* ---------- Checkbox ---------- */
.mf-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1.75rem;
}

.mf-form-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.mf-form-checkbox__box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--mf-border-light);
    border-radius: 4px;
    margin-top: 0.15rem;
    position: relative;
    transition: all var(--mf-duration-fast) var(--mf-ease);
}

.mf-form-checkbox input:checked + .mf-form-checkbox__box {
    background: var(--mf-gold);
    border-color: var(--mf-gold);
}

.mf-form-checkbox input:checked + .mf-form-checkbox__box::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--mf-text-inverse);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.mf-form-checkbox__text {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--mf-text-secondary);
}

/* ---------- Submit ---------- */
.mf-eventhall__submit {
    width: 100%;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.mf-eventhall__form-msg {
    margin-top: 1rem;
    font-size: 0.88rem;
    text-align: center;
    min-height: 1.2em;
}

.mf-eventhall__form-msg--success {
    color: #6FCF97;
}

.mf-eventhall__form-msg--error {
    color: #EB5757;
}

/* ========== RESPONSIVE — Section 7 ========== */

@media (max-width: 1024px) {
    .mf-eventhall__grid {
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .mf-eventhall__grid {
        grid-template-columns: 1fr;
    }

    .mf-eventhall__desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .mf-eventhall {
        padding: var(--mf-space-4xl) 0;
    }

    .mf-eventhall__form-card {
        padding: 1.75rem;
    }

    .mf-form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .mf-form-phone {
        flex-direction: column;
    }

    .mf-form-phone select {
        flex: 1;
    }
}


/* ============================================
   Section 8: Photo Gallery
   ============================================ */

.mf-gallery {
    padding: var(--mf-space-5xl) 0;
    background: var(--mf-bg-primary);
}

/* ---------- Header ---------- */
.mf-gallery__header {
    text-align: center;
    margin-bottom: 3rem;
}

.mf-gallery__header .mf-subheading {
    display: block;
    margin-bottom: 0.75rem;
}

.mf-gallery__title-accent {
    color: var(--mf-gold);
}

/* ---------- Masonry Grid ---------- */
.mf-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

/* Varied spans for visual rhythm — 9 images */
.mf-gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mf-gallery__item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.mf-gallery__item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.mf-gallery__item:nth-child(4) { grid-column: span 1; grid-row: span 2; }
.mf-gallery__item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
.mf-gallery__item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
.mf-gallery__item:nth-child(7) { grid-column: span 2; grid-row: span 1; }
.mf-gallery__item:nth-child(8) { grid-column: span 1; grid-row: span 1; }
.mf-gallery__item:nth-child(9) { grid-column: span 1; grid-row: span 1; }

/* ---------- Gallery Item ---------- */
.mf-gallery__item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--mf-radius-md);
    cursor: pointer;
    padding: 0;
}

.mf-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--mf-duration-slow) var(--mf-ease);
}

.mf-gallery__item:hover img {
    transform: scale(1.08);
}

.mf-gallery__item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 11, 15, 0.45);
    opacity: 0;
    transition: opacity var(--mf-duration-fast) var(--mf-ease);
}

.mf-gallery__item:hover .mf-gallery__item-overlay {
    opacity: 1;
}

.mf-gallery__item-overlay i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mf-gold);
    color: var(--mf-text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transform: scale(0.8);
    transition: transform var(--mf-duration-fast) var(--mf-ease);
}

.mf-gallery__item:hover .mf-gallery__item-overlay i {
    transform: scale(1);
}


/* ---------- Lightbox ---------- */
.mf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.mf-lightbox--open {
    display: flex;
}

.mf-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 7, 0.96);
}

.mf-lightbox__stage {
    position: relative;
    z-index: 1;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mf-lightbox__stage img {
    max-width: 85vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: var(--mf-radius-md);
    box-shadow: var(--mf-shadow-lg);
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.25s var(--mf-ease-out), transform 0.25s var(--mf-ease-out);
}

.mf-lightbox__stage img.mf-lightbox__img--loaded {
    opacity: 1;
    transform: scale(1);
}

.mf-lightbox__counter {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--mf-text-secondary);
    letter-spacing: 0.05em;
}

.mf-lightbox__close,
.mf-lightbox__nav {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--mf-text-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--mf-duration-fast) var(--mf-ease);
}

.mf-lightbox__close:hover,
.mf-lightbox__nav:hover {
    background: var(--mf-gold);
    border-color: var(--mf-gold);
    color: var(--mf-text-inverse);
}

.mf-lightbox__close {
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    font-size: 1rem;
}

.mf-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
}

.mf-lightbox__nav--prev { left: 1.5rem; }
.mf-lightbox__nav--next { right: 1.5rem; }


/* ========== RESPONSIVE — Section 8 ========== */

@media (max-width: 1024px) {
    .mf-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

    .mf-gallery__item:nth-child(7) { grid-column: span 1; }
}

@media (max-width: 768px) {
    .mf-gallery {
        padding: var(--mf-space-4xl) 0;
    }

    .mf-gallery__header {
        margin-bottom: 2rem;
    }

    .mf-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 0.75rem;
    }

    .mf-gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .mf-gallery__item:nth-child(4) { grid-row: span 1; }

    .mf-lightbox__nav {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }

    .mf-lightbox__nav--prev { left: 0.75rem; }
    .mf-lightbox__nav--next { right: 0.75rem; }

    .mf-lightbox__close {
        top: 1rem;
        right: 1rem;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .mf-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
    }

    .mf-gallery__item-overlay {
        opacity: 1;
        background: rgba(11, 11, 15, 0.15);
    }

    .mf-gallery__item-overlay i {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
        transform: scale(1);
    }
}

/* ============================================
   Section 9: Scrolling Marquee
   ============================================ */

.mf-marquee {
    background: var(--mf-bg-primary);
    border-top: 1px solid var(--mf-border);
    border-bottom: 1px solid var(--mf-border);
    padding: 2.5rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.mf-marquee__track {
    display: flex;
    width: max-content;
    animation: mfMarqueeScroll 28s linear infinite;
}

.mf-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mf-marquee__text {
    font-family: var(--mf-font-display);
    font-weight: 700;
    font-size: clamp(2.25rem, 4.5vw, 4rem);
    line-height: 1;
    color: var(--mf-red-dark);
    margin: 0 1.25rem;
    white-space: nowrap;
}

.mf-marquee__text--outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--mf-gold);
    text-stroke: 1.5px var(--mf-gold);
}

@keyframes mfMarqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Pause on hover */
.mf-marquee:hover .mf-marquee__track {
    animation-play-state: paused;
}


/* ========== RESPONSIVE — Section 9 ========== */

@media (max-width: 768px) {
    .mf-marquee {
        padding: 1.75rem 0;
    }

    .mf-marquee__text {
        margin: 0 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mf-marquee__track {
        animation: none;
    }
}

/* ============================================
   Section 10: Blog + Instagram
   ============================================ */

.mf-blog {
    padding: var(--mf-space-5xl) 0 var(--mf-space-4xl);
    background: var(--mf-bg-primary);
}

/* ---------- Blog Header ---------- */
.mf-blog__header {
    text-align: center;
    margin-bottom: 3rem;
}

.mf-blog__header .mf-subheading {
    display: block;
    margin-bottom: 0.75rem;
}

.mf-blog__title-accent {
    color: var(--mf-gold);
}

/* ---------- Blog Grid ---------- */
.mf-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* ---------- Blog Card ---------- */
.mf-blog__card {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--mf-radius-lg);
    overflow: hidden;
    transition: all var(--mf-duration) var(--mf-ease);
}

.mf-blog__card:hover {
    border-color: rgba(212, 160, 74, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--mf-shadow-md);
}

.mf-blog__card-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.mf-blog__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--mf-duration-slow) var(--mf-ease);
}

.mf-blog__card:hover .mf-blog__card-img img {
    transform: scale(1.06);
}

.mf-blog__card-body {
    padding: 1.5rem 1.5rem 1.75rem;
}

.mf-blog__card-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--mf-text-muted);
    margin-bottom: 0.75rem;
}

.mf-blog__card-title {
    font-family: var(--mf-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.mf-blog__card-title a {
    color: var(--mf-text-primary);
    transition: color var(--mf-duration-fast) var(--mf-ease);
}

.mf-blog__card-title a:hover {
    color: var(--mf-gold);
}

.mf-blog__card-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--mf-text-secondary);
    margin-bottom: 1.25rem;
}

.mf-blog__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mf-gold);
    transition: gap var(--mf-duration-fast) var(--mf-ease);
}

.mf-blog__card-link i {
    font-size: 0.75rem;
    transition: transform var(--mf-duration-fast) var(--mf-ease);
}

.mf-blog__card-link:hover i {
    transform: translateX(3px);
}

/* ---------- Empty State ---------- */
.mf-blog__empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--mf-text-muted);
    font-size: 1rem;
}


/* ============================================
   Instagram Section
   ============================================ */

.mf-instagram {
    padding: var(--mf-space-4xl) 0 var(--mf-space-5xl);
    background: var(--mf-bg-primary);
}

.mf-instagram__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.mf-instagram__header .mf-subheading {
    display: block;
    margin-bottom: 0.75rem;
}

.mf-instagram__title-accent {
    color: var(--mf-gold);
}

/* ---------- Embed Container ---------- */
.mf-instagram__embed {
    margin-bottom: 2.5rem;
    min-height: 200px;
}

/* Placeholder shown until Behold embed is added */
.mf-instagram__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 3.5rem 1.5rem;
    border: 1.5px dashed var(--mf-border-light);
    border-radius: var(--mf-radius-lg);
    color: var(--mf-text-muted);
}

.mf-instagram__placeholder i {
    font-size: 2.5rem;
    color: var(--mf-gold);
    opacity: 0.5;
}

.mf-instagram__placeholder p {
    font-size: 0.9rem;
}

/* ---------- Follow CTA ---------- */
.mf-instagram__cta {
    text-align: center;
}

.mf-instagram__cta .mf-btn i {
    font-size: 1rem;
}


/* ========== RESPONSIVE — Section 10 ========== */

@media (max-width: 900px) {
    .mf-blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mf-blog,
    .mf-instagram {
        padding: var(--mf-space-4xl) 0;
    }

    .mf-blog__header,
    .mf-instagram__header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .mf-blog__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mf-instagram__placeholder {
        padding: 2.5rem 1.25rem;
    }

    .mf-instagram__placeholder i {
        font-size: 2rem;
    }
}


/* ============================================
   Section 11: Testimonials
   ============================================ */

.mf-testimonial {
    padding: var(--mf-space-5xl) 0;
    background: var(--mf-bg-secondary);
    position: relative;
    overflow: hidden;
}

.mf-testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 160, 74, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(196, 48, 48, 0.05) 0%, transparent 45%);
    pointer-events: none;
}

/* ---------- Header ---------- */
.mf-testimonial__header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.mf-testimonial__header .mf-subheading {
    display: block;
    margin-bottom: 0.75rem;
}

.mf-testimonial__title-accent {
    color: var(--mf-gold);
}

/* ---------- Stats Bar ---------- */
.mf-testimonial__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.mf-testimonial__score {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mf-testimonial__score-num {
    font-family: var(--mf-font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--mf-text-primary);
    line-height: 1;
}

.mf-testimonial__score-stars {
    display: flex;
    gap: 0.15rem;
    color: var(--mf-gold);
    font-size: 0.9rem;
}

.mf-testimonial__stats-divider {
    width: 1px;
    height: 28px;
    background: var(--mf-border-light);
}

.mf-testimonial__stats-text {
    font-size: 0.9rem;
    color: var(--mf-text-secondary);
}

.mf-testimonial__stats-text strong {
    color: var(--mf-text-primary);
}

.mf-testimonial__sources {
    display: flex;
    gap: 0.6rem;
}

.mf-testimonial__source-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--mf-radius-full);
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mf-text-secondary);
}

.mf-testimonial__source-badge i {
    color: var(--mf-gold);
}


/* ---------- Carousel Wrapper ---------- */
.mf-testimonial__carousel-wrap {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    z-index: 1;
}

/* Giant watermark quote mark — signature element */
.mf-testimonial__watermark {
    position: absolute;
    top: -2.5rem;
    left: -1rem;
    font-size: 7rem;
    color: var(--mf-gold);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

/* ---------- Viewport / Track ---------- */
.mf-testimonial__viewport {
    overflow: hidden;
    border-radius: var(--mf-radius-xl);
}

.mf-testimonial__track {
    display: flex;
    transition: transform var(--mf-duration-slow) var(--mf-ease);
}

.mf-testimonial__slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0.25rem;
}

/* ---------- Card ---------- */
.mf-testimonial__card {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--mf-radius-lg);
    padding: 2.75rem 2.5rem;
    text-align: center;
    position: relative;
}

.mf-testimonial__card-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    color: var(--mf-gold);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.mf-testimonial__card-text {
    font-family: var(--mf-font-display);
    font-style: italic;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    line-height: 1.6;
    color: var(--mf-text-primary);
    margin-bottom: 2rem;
}

.mf-testimonial__card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

/* Gradient-ring avatar with initials */
.mf-testimonial__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mf-font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--mf-text-inverse);
    background: linear-gradient(135deg, var(--mf-gold), var(--mf-red));
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--mf-bg-card), 0 0 0 4px rgba(212, 160, 74, 0.3);
}

.mf-testimonial__card-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.mf-testimonial__card-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--mf-text-primary);
}

.mf-testimonial__card-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--mf-text-muted);
}

.mf-testimonial__card-date i {
    color: var(--mf-gold);
    font-size: 0.78rem;
}


/* ---------- Arrows ---------- */
.mf-testimonial__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--mf-bg-secondary);
    border: 1px solid var(--mf-border-light);
    color: var(--mf-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--mf-duration-fast) var(--mf-ease);
    box-shadow: var(--mf-shadow-md);
}

.mf-testimonial__arrow:hover {
    background: var(--mf-gold);
    border-color: var(--mf-gold);
    color: var(--mf-text-inverse);
}

.mf-testimonial__arrow--prev { left: -23px; }
.mf-testimonial__arrow--next { right: -23px; }


/* ---------- Dots ---------- */
.mf-testimonial__dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.mf-testimonial__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mf-border-light);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--mf-duration-fast) var(--mf-ease);
}

.mf-testimonial__dot--active {
    background: var(--mf-gold);
    width: 24px;
    border-radius: 5px;
}


/* ========== RESPONSIVE — Section 11 ========== */

@media (max-width: 900px) {
    .mf-testimonial__arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .mf-testimonial {
        padding: var(--mf-space-4xl) 0;
    }

    .mf-testimonial__stats {
        flex-direction: column;
        gap: 0.85rem;
        margin-bottom: 2.5rem;
    }

    .mf-testimonial__stats-divider {
        display: none;
    }

    .mf-testimonial__card {
        padding: 2.25rem 1.5rem;
    }

    .mf-testimonial__watermark {
        font-size: 5rem;
        top: -1.5rem;
    }
}

@media (max-width: 480px) {
    .mf-testimonial__card-footer {
        flex-direction: column;
        gap: 0.5rem;
    }

    .mf-testimonial__card-meta {
        align-items: center;
    }

    .mf-testimonial__avatar {
        width: 46px;
        height: 46px;
        font-size: 0.95rem;
    }
}


/* ============================================
   MEHFIL — INNER PAGE HERO
   Used on Menu, Event Hall, and other inner pages.
   Add these rules to the bottom of home.css
   ============================================ */

.mf-page-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.mf-page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mf-page-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.mf-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 11, 15, 0.45) 0%,
        rgba(11, 11, 15, 0.70) 60%,
        rgba(11, 11, 15, 0.92) 100%
    );
}

.mf-page-hero__content {
    position: relative;
    z-index: 1;
    padding-bottom: 2.75rem;
}

.mf-page-hero__content .mf-subheading {
    display: block;
    margin-bottom: 0.5rem;
}

.mf-page-hero__title {
    font-family: var(--mf-font-body);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0.05em;
    color: var(--mf-text-primary);
    text-transform: uppercase;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .mf-page-hero {
        height: 240px;
    }

    .mf-page-hero__content {
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .mf-page-hero {
        height: 200px;
    }
}

/* Savor section — optional CTA (used on About page) */
.mf-savor__cta {
    margin-top: 1.75rem;
}
