﻿/* ======================================================
   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-bottom: 3rem;
    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 (RESTORED FULL)
====================================================== */

.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* smooth overlay (not heavy black) */
    background: linear-gradient(to bottom, rgba(17,24,39,0.78), rgba(17,24,39,0.55)), radial-gradient(circle at 50% 35%, rgba(99,102,241,0.10), transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 16px;
}

.hero-title h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.hero-logo {
    max-width: 90%;
    max-height: 400px;
    margin: 5px auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
}

/* ======================================================
   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);
        }
