/* Mini Panjab Catering — Shared landing-page styles
   Loaded only by the dedicated landing pages (/menu, /corporate, /weddings,
   /halal, /about). Reuses brand tokens from style.css; standalone enough
   that a landing page renders correctly even before style.css finishes
   loading. */

:root {
    --land-primary: #f5a623;
    --land-primary-dark: #e88c0a;
    --land-cream: #fff7eb;
    --land-cream-2: #fef3e2;
    --land-text: #1a1a1a;
    --land-muted: #666;
    --land-border: #f0e4cc;
    --land-card: #ffffff;
    --land-whatsapp: #25D366;
    --land-radius: 16px;
    --land-radius-pill: 999px;
    --land-shadow-sm: 0 4px 14px rgba(245, 166, 35, 0.10);
    --land-shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.landing {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, var(--land-cream-2) 0%, var(--land-cream) 100%);
    color: var(--land-text);
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body.landing a { color: inherit; text-decoration: none; }
body.landing img { display: block; max-width: 100%; height: auto; }

/* ---- Top bar ---- */
.land-topbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--land-border);
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.land-topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.land-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--land-text);
}
.land-brand-mark {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--land-primary);
    color: white;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 14px;
}
.land-brand-text { font-size: 16px; line-height: 1.1; }
.land-brand-text small { display: block; font-size: 11px; color: var(--land-muted); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.land-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.land-nav a {
    color: var(--land-muted);
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.15s ease;
}
.land-nav a:hover { background: var(--land-cream); color: var(--land-text); }
.land-cta {
    background: var(--land-whatsapp);
    color: white !important;
    padding: 10px 18px !important;
    border-radius: var(--land-radius-pill);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.land-cta:hover { background: #1ea952; }

/* ---- Hero ---- */
.land-hero {
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 24px 32px;
    text-align: left;
}
.land-eyebrow {
    display: inline-block;
    background: var(--land-card);
    border: 1px solid var(--land-border);
    color: var(--land-primary-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--land-radius-pill);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.land-h1 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 18px;
    color: var(--land-text);
}
.land-h1 .accent { color: var(--land-primary-dark); }
.land-lead {
    font-size: 18px;
    color: var(--land-muted);
    margin-top: 18px;
    max-width: 720px;
}
.land-hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.land-btn {
    padding: 14px 24px;
    border-radius: var(--land-radius-pill);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.15s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.land-btn-primary {
    background: var(--land-whatsapp);
    color: white;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.land-btn-primary:hover { background: #1ea952; transform: translateY(-1px); }
.land-btn-secondary {
    background: var(--land-card);
    color: var(--land-text);
    border-color: var(--land-border);
}
.land-btn-secondary:hover { border-color: var(--land-primary); }

/* ---- Sections ---- */
.land-section {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 24px;
}
.land-section h2 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--land-text);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.land-section h2 .accent { color: var(--land-primary-dark); }
.land-section h3 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--land-text);
    margin: 20px 0 8px;
}
.land-section p { margin-bottom: 16px; color: #333; }
.land-section ul { padding-left: 22px; margin-bottom: 18px; color: #333; }
.land-section ul li { margin-bottom: 8px; }
.land-section strong { color: var(--land-text); }

/* ---- Card grid ---- */
.land-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.land-card {
    background: var(--land-card);
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius);
    padding: 24px;
    box-shadow: var(--land-shadow-sm);
}
.land-card h3 {
    margin-top: 0;
    color: var(--land-primary-dark);
}
.land-card .price {
    display: inline-block;
    background: var(--land-cream);
    color: var(--land-primary-dark);
    padding: 4px 12px;
    border-radius: var(--land-radius-pill);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 12px;
}

/* ---- Highlight box ---- */
.land-highlight {
    background: var(--land-cream);
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius);
    padding: 22px 26px;
    margin: 22px 0;
}
.land-highlight strong { color: var(--land-primary-dark); }

/* ---- Tables ---- */
.land-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    background: var(--land-card);
    border-radius: var(--land-radius);
    overflow: hidden;
    box-shadow: var(--land-shadow-sm);
}
.land-table th, .land-table td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--land-border);
}
.land-table th {
    background: var(--land-cream);
    font-weight: 700;
    color: var(--land-text);
    font-size: 14px;
}
.land-table td { color: #333; font-size: 14px; }
.land-table tr:last-child td { border-bottom: none; }

/* ---- FAQ ---- */
.land-faq details {
    background: var(--land-card);
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius);
    padding: 18px 22px;
    margin-bottom: 12px;
    box-shadow: var(--land-shadow-sm);
}
.land-faq details[open] { border-color: var(--land-primary); }
.land-faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: var(--land-text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.land-faq summary::-webkit-details-marker { display: none; }
.land-faq summary::after {
    content: "+";
    font-size: 22px;
    color: var(--land-primary-dark);
    transition: transform 0.2s ease;
}
.land-faq details[open] summary::after { content: "−"; }
.land-faq summary + p { margin-top: 12px; color: #555; }

/* ---- CTA strip ---- */
.land-cta-strip {
    background: linear-gradient(135deg, var(--land-primary) 0%, var(--land-primary-dark) 100%);
    color: white;
    border-radius: var(--land-radius);
    padding: 36px;
    text-align: center;
    margin: 40px 0;
    box-shadow: var(--land-shadow-md);
}
.land-cta-strip h2 {
    color: white;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}
.land-cta-strip p { color: rgba(255, 255, 255, 0.9); margin-bottom: 22px; }
.land-cta-strip .land-btn-primary { background: white; color: var(--land-primary-dark); }
.land-cta-strip .land-btn-primary:hover { background: #fff7eb; }

/* ---- Footer ---- */
.land-footer {
    background: var(--land-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 24px 24px;
    margin-top: 60px;
}
.land-footer-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.land-footer h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 12px;
    font-family: 'Outfit', 'Inter', sans-serif;
}
.land-footer a { color: rgba(255, 255, 255, 0.7); display: block; padding: 4px 0; font-size: 14px; }
.land-footer a:hover { color: white; }
.land-footer .land-footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 28px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- Mobile tweaks ---- */
@media (max-width: 640px) {
    .land-topbar { padding: 10px 16px; }
    .land-nav a:not(.land-cta) { display: none; }
    .land-hero { padding: 36px 16px 24px; }
    .land-section { padding: 28px 16px; }
    .land-cta-strip { padding: 28px 20px; }
}
