/* =========================
   GLOBAL
========================= */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;

    /* Aesthetic background */
    background:
        radial-gradient(circle at top, #fff7ef 0%, #ffffff 45%),
        linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}

.menu-list {
    max-width: 520px;
    margin: 40px auto;
    padding: 30px 20px;

    background: rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.menu-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}


/* =========================
   HEADER
========================= */
.header {
    text-align: center;
    padding: 32px 20px;
}

.logo {
    width: 220px;
    margin-bottom: 8px;
}

.header h3 {
    font-weight: 500;
    color: #555;
}

/* =========================
   MENU GRID (2–4 RULE)
========================= */
.menu-grid {
    display: grid;
    gap: 20px;
    padding: 24px;
}

/* Mobile */
@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (min-width: 993px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========================
   MENU CARD
========================= */
.menu-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 14px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.menu-card.clickable {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card.clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.1);
}

/* =========================
   ICON
========================= */
.icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* =========================
   TEXT
========================= */
.menu-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    font-weight: 400;

    margin-top: 10px;
    margin-bottom: 6px;

    letter-spacing: 0.6px;
    color: #3a2a1a;
}


.menu-card span {
    font-size: 14px;
    color: #777;
}

/* =========================
   DISABLED / COMING SOON
========================= */
.menu-card:not(.clickable) {
    opacity: 0.75;
}

.menu-card:not(.clickable) span {
    font-style: italic;
}

/* =========================
   HERO (UPDATED)
========================= */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;   /* ⬅ CRITICAL FIX */

    background: radial-gradient(
        circle at center,
        #ffffff 0%,
        #faf6f0 55%,
        #f3ecdf 100%
    );

    padding: 18px 20px 12px;   /* ⬅ very small top padding */
}





/* LOGO — transparent, bigger, spotlight */
.logo-spotlight {
    padding: 0px;
    margin: 0 auto -100px;
    background: none;
    box-shadow: none;
    margin-top: -60px;
    margin-bottom: -100px;
}

.logo-spotlight img {
    width: 380px;           /* ⬅ increased from 340 */
    max-width: 85vw;
    height: auto;

    filter:
        drop-shadow(0 14px 40px rgba(0,0,0,0.18))
        drop-shadow(0 0 18px rgba(190,150,90,0.25));
}


/* OUR MENU — aesthetic text */
.hero-text {
    margin-top: 4px;
    background: none;
    padding: 0;
    box-shadow: none;
}

.hero-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;
    color: #3e2f1c;

    margin: 0;
}


/* subtle underline */
.hero-text h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 1.8px;
    margin: 14px auto 0;

    background: linear-gradient(
        to right,
        transparent,
        #c7a36b,
        transparent
    );
}


/* MOBILE TWEAKS */
@media (max-width: 600px) {
    .logo-spotlight img {
        width: 270px;
    }

    .hero-text h2 {
        font-size: 24px;
        letter-spacing: 3px;
    }
}



/* CHaat – warm Indian street food */
.beige {
    background: linear-gradient(135deg, #fff6ec, #fff);
}

/* Mexican / Italian – bold & festive */
.yellow {
    background: linear-gradient(135deg, #fff2d6, #ffffff);
}

/* Thai / Lebanese / Mongolian – fresh & herbal */
.green {
    background: linear-gradient(135deg, #f1fbf6, #ffffff);
}

.menu-card {
    border-radius: 20px;
    padding: 28px 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.menu-card {
    position: relative;
    overflow: hidden;
}

/* grain texture overlay */
.menu-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
}


.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.menu-card h3 {
    margin-top: 8px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.menu-card span {
    font-size: 14px;
    color: #777;
}

@media (max-width: 600px) {
    .icon {
        width: 95px;
        height: 95px;
    }

    .icon img {
        width: 70px;
        height: 70px;
    }
}

.menu-card h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.header h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

.menu-card span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.75;
}

.menu-header {
    text-align: center;
    padding: 40px 20px 20px;
}

.back-btn {
    position: absolute;
    left: 20px;
    top: 20px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #555;
}

.menu-logo {
    width: 140px;          /* ⬅ slightly bigger */
    height: auto;
    margin-bottom: 12px;
}

.menu-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin: 0;
    letter-spacing: 1px;
}

.menu-list {
    max-width: 520px;
    margin: 30px auto;
    padding: 20px;
}

.menu-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 14px;

    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;

    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

@media (max-width: 600px) {
    .menu-logo {
        width: 110px;
    }

    .menu-title h1 {
        font-size: 28px;
    }

    .menu-item {
        font-size: 16px;
        padding: 14px;
    }
}

@media (max-width: 600px) {
    .menu-card h3 {
        font-size: 19px;
    }
}

@media (max-width: 600px) {

    /* HERO – tighten vertical space */
    .hero {
        padding: 8px 14px 6px;

        /* move glow upwards to reduce visual gap */
        background: radial-gradient(
            circle at top,
            #ffffff 0%,
            #faf6f0 50%,
            #f3ecdf 100%
        );
    }

    /* LOGO spacing fix */
    .logo-spotlight {
        margin-top: -60px;
        margin-bottom: -40px;
    }

    .logo-spotlight img {
        width: 230px;
    }

    /* OUR MENU text */
    .hero-text {
        margin-top: 0;
    }

    .hero-text h2 {
        font-size: 24px;
        letter-spacing: 3px;
    }

    /* underline spacing */
    .hero-text h2::after {
        margin: 8px auto 0;
        width: 48px;
    }
}

/* =========================
   CONTACT SECTION (UPDATED)
========================= */
.contact-section {
    text-align: center;
    margin: 32px auto 24px;
    padding: 24px 16px;
}

/* Heading */
.contact-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7a6a55;
    margin-bottom: 22px;
}

/* Wrapper */
.contact-numbers {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

/* Individual contact */
.contact-person {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
}

/* Name */
.person-name {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #3e2f1c;
}

/* Number */
.contact-person a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #6b5a44;
    text-decoration: none;
}

.contact-person a:hover {
    text-decoration: underline;
}

/* =========================
   MOBILE TIGHTENING
========================= */
@media (max-width: 600px) {
    .contact-section {
        margin-top: 24px;
        padding: 20px 14px;
    }

    .contact-label {
        font-size: 15px;
        letter-spacing: 1.6px;
        margin-bottom: 18px;
    }

    .contact-numbers {
        flex-direction: column;
        gap: 20px;
    }

    .contact-person {
        gap: 3px;
    }

    .person-name {
        font-size: 16px;
    }

    .contact-person a {
        font-size: 15px;
    }
}


