:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --border: #e5e7eb;
    --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text);
}

.site {
    font-family: "Poppins", Arial, sans-serif;
}

h1, h2, h3, h4, h5 {
    color: #111827;
}

#menuback {
    background: transparent;
    padding-bottom: 24px;
}

.text-logo {
    margin: 0;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e5e7eb;
    letter-spacing: 0.2px;
}

.hero-section {
    max-width: 1120px;
    margin: 0 auto 28px;
    padding: 10px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-slide-item {
    border-radius: 10px;
    overflow: hidden;
}

.hs-title-1 span,
.hs-title-2 span,
.hs-title-3 span {
    background: rgba(17, 24, 39, 0.72) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}

.thumbnail {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 340px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 0;
    background: #f1f5f9;
}

.caption {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.caption > h4 {
    color: #111827;
    font-size: 1.05rem;
    margin-top: 0;
    margin-bottom: 8px;
}

.caption > p {
    color: var(--muted);
    margin: 0;
}

.caption .rating,
.caption .added-by {
    font-size: 0.92rem;
    color: #475569;
}

.caption .btn {
    margin-top: auto;
    width: fit-content;
}

.price {
    background: #eff6ff;
    color: #1e3a8a;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.82rem;
    font-weight: 600;
}

h2 {
    margin: 12px 0 18px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
}

.btn-order,
.btn-primary {
    border-radius: 10px;
    border: 0;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

.btn-order:hover,
.btn-order:focus,
.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-hover);
    color: #fff;
}

.contentBg .foodList {
    gap: 24px;
}

aside.foodTab {
    text-align: center;
}

aside.foodTab img {
    width: 100%;
    max-width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

aside.foodTab:hover img {
    transform: translateY(-4px);
}

aside.foodTab h3 {
    font-size: 1.1rem;
    color: #111827;
    margin-top: 12px;
    border: 0;
}

.footer-section {
    background: #111827;
    color: #e5e7eb;
    text-align: center;
    padding: 20px 0;
}

.footer-section a {
    color: #93c5fd;
}

@media (max-width: 768px) {
    .hero-section {
        margin: 0 10px 18px;
    }

    .thumbnail img {
        height: 160px;
    }

    aside.foodTab img {
        max-width: 180px;
        height: 150px;
    }
}

