﻿/* ======================================================
   SMOOTH DARK (SAFE UPGRADE) — keeps original hero layout
====================================================== */

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Use smooth navy/slate, not pure black */
:root {
    --bg-main: #111827; /* deep navy */
    --bg-section: #1e293b; /* slate */
    --bg-card: #1f2a3a; /* card slate */

    --accent: #e63946; /* keep your accent (or change) */
    --text-main: #f1f5f9;
    --text-muted: #cbd5e1;
}

/* IMPORTANT: keep body like your working version */
body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(1000px 600px at 15% 15%, rgba(99,102,241,0.10), transparent 60%), radial-gradient(900px 550px at 85% 25%, rgba(230,57,70,0.08), transparent 55%), linear-gradient(180deg, #1e293b 0%, #111827 55%, #0f172a 100%);
    color: var(--text-main);
    margin: 0;
}

.section {
    padding: 30px 0; /* keep your spacing */
}

.section-surface {
    background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.018) 100%), linear-gradient(180deg, var(--bg-section) 0%, #172033 100%);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1.25rem;
    letter-spacing: 0.5px;
}

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: var(--accent);
        margin: 14px auto 0;
        border-radius: 2px;
    }

/* ======================================================
   HERO
====================================================== */

.hero {
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

}

/* Content container */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 30px 40px;
    max-width: 900px;
    width: 100%;
}

/* Title styling */
.hero-title h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

/* Text readability without boxes */
.hero-title h1,
.hero-title h2,
.hero-content p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85), 0 4px 12px rgba(0, 0, 0, 0.65), 0 0 24px rgba(0, 0, 0, 0.45);
}

    .hero-content p.hero-subheading {
        font-size: 1.2rem;
        line-height: 1.6;
        color: rgba(255,255,255,0.92);
        max-width: 760px;
        margin: 0 auto 0;
    }

/* only pull upward when logo exists */
.hero-title.has-logo + .hero-subheading {
    margin-top: -35px;
}

/* normal spacing when no logo */
.hero-title.no-logo + .hero-subheading {
    margin-top: 10px;
}
/* Logo container */
.hero-logo-container {
    position: relative;
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 8px;
}

/* Logo image with glow following real image edges */
.hero-logo {
    position: relative;
    z-index: 2;
    max-width: 90%;
    max-height: 400px;
    margin: 5px auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.85)) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 12px rgba(212, 160, 23, 0.18));
}

/* Brand name */
.hero-title h2 {
    line-height: 1.2;
    margin-top: 0.75rem;
}

/* Subheading */
.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
    margin: 14px auto 0;
}

/* CTA button */
.hero-content .btn {
    margin-top: 18px;
    padding: 0.85rem 1.6rem;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #d4a017, #b8860b);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 10px rgba(212, 160, 23, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

    .hero-content .btn:hover,
    .hero-content .btn:focus {
        color: #fff;
        background: linear-gradient(135deg, #e0b52a, #c79611);
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 14px rgba(224, 181, 42, 0.34);
    }

    .hero-content .btn:active {
        transform: translateY(0);
    }

/* Biryani animation spacing */
.biryani-animation {
    margin-top: 18px;
}

/* ================================
   HERO MOBILE IMPROVEMENT
================================ */

@media (max-width: 768px) {
    

   
}


/* ======================================================
   BUTTONS
====================================================== */

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #b71c2a);
    border: none;
    padding: 12px 28px;
    font-size: 1.1rem;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

    .btn-primary:hover {
        filter: brightness(1.05);
        transform: translateY(-1px);
    }

/* ======================================================
   CARDS
====================================================== */

.card {
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .card:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 20px 44px rgba(0,0,0,0.35);
    }

.card-title {
    color: #ffffff;
    font-weight: 600;
}

.card-text {
    color: var(--text-muted);
}

.card-body {
    background-color: transparent;
}

/* Dish images */
.dish-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .dish-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .dish-img {
        height: 140px;
    }
}

/* ======================================================
   FOOTER
====================================================== */

footer {
    background: linear-gradient(180deg, #101827 0%, #0f172a 100%);
    padding: 50px 0;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.06);
}

    footer a {
        color: var(--text-main);
        margin: 0 10px;
        text-decoration: none;
    }

        footer a:hover {
            color: var(--accent);
        }





/* ======================================================
   BACKGROUND COLOR FIX — SAFE VERSION
   (keeps your premium dark theme intact)
====================================================== */

/* 1) KEEP your beautiful body gradient (do NOT override) */
/* — intentionally empty — */

/* 2) Unify section surfaces so they don't feel like separate blocks */
.section-surface,
.featured-dishes,
#story,
#dishes,
#promotions {
    background: transparent !important;
}

/* 3) Keep HERO untouched */
#hero,
.hero {
    background-color: transparent !important;
}

/* 4) CTA — give very subtle separation (not a harsh block) */

#cta {
    background: linear-gradient( 180deg, rgba(15,23,42,0.35) 0%, rgba(15,23,42,0.65) 100% ) !important;
}

/* 5) Footer — keep dark but smooth */
footer {
    background: linear-gradient( 180deg, #101827 0%, #0f172a 100% ) !important;
}

/* 6) IMPORTANT: keep your premium cards (do NOT make transparent) */
/* — no override for .card — */

/* Dish of the Day */
.dish-of-the-day .dotd-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    overflow: hidden;
}

.dish-of-the-day .dotd-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 240px;
}

.dish-of-the-day .dotd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dish-of-the-day .dotd-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(255,193,7,0.92);
    color: #111;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.dish-of-the-day .dotd-title {
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
}

.dish-of-the-day .dotd-desc {
    line-height: 1.6;
    font-size: 1.05rem;
}

.dish-of-the-day .dotd-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.dish-of-the-day .dotd-old {
    opacity: 0.65;
    text-decoration: line-through;
    font-weight: 600;
}

.dish-of-the-day .dotd-new {
    font-size: 1.6rem;
    font-weight: 800;
}

.dish-of-the-day .dotd-note {
    opacity: 0.75;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .dish-of-the-day .dotd-card {
        grid-template-columns: 1fr;
    }

    .dish-of-the-day .dotd-image-wrap {
        min-height: 220px;
    }
}

