/* ==========================================================
   HƯƠNG VIỆT — Full Landing Page CSS
   Style: Dark Premium, inspired by Quán Nhậu Tự Do
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary: #e8a020;
    /* golden amber */
    --primary-dark: #c07c0a;
    --bg-dark: #0f0e0c;
    --bg-card: #1a1814;
    --bg-section: #141210;
    --text: #f0ebe3;
    --text-muted: #9e9488;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 12px;
    --font: 'Be Vietnam Pro', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img {
    display: block;
    max-width: 100%
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg-dark)
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(15, 14, 12, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.navbar.scrolled {
    background: rgba(15, 14, 12, 0.98);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
}

.nav-logo-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.nav-logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all 0.2s;
    letter-spacing: 0.03em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hotline {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-book {
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.25s;
    letter-spacing: 0.02em;
}

.btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-login {
    border: 1px solid var(--border);
    color: var(--text);
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/restaurant_web/assets/img/hero.png');
    background-size: cover;
    background-position: center;
    transform-origin: center;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 14, 12, 0.92) 45%, rgba(15, 14, 12, 0.4) 100%);
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px;
    max-width: 680px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 160, 32, 0.15);
    border: 1px solid rgba(232, 160, 32, 0.3);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 24px;
}

.hero-title em {
    color: var(--primary);
    font-style: italic;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding: 15px 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 160, 32, 0.3);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats {
    position: absolute;
    bottom: 48px;
    right: 48px;
    z-index: 2;
    display: flex;
    gap: 32px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3
    }

    50% {
        opacity: 1
    }
}

/* =====================================================
   SECTION COMMON
===================================================== */
section {
    padding: 100px 48px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.8;
}

.section-head {
    margin-bottom: 56px;
}

.section-head.center {
    text-align: center;
}

.section-head.center .section-label {
    display: inline-flex;
}

.section-head.center .section-subtitle {
    margin: 0 auto;
}

/* =====================================================
   NEW DISHES — Scrolling ribbon
===================================================== */
.dishes-new {
    background: var(--bg-section);
    overflow: hidden;
    padding: 60px 0;
}

.dishes-ticker {
    display: flex;
    gap: 0;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.dishes-ticker:hover {
    animation-play-state: paused;
}

.ticker-set {
    display: flex;
    gap: 0;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 40px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
}

.ticker-item img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
}

.ticker-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.ticker-item-price {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
}

.ticker-item-tag {
    font-size: 10px;
    background: rgba(232, 160, 32, 0.15);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 99px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border: 1px solid rgba(232, 160, 32, 0.3);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =====================================================
   FEATURED MENU SECTION
===================================================== */
.menu-section {
    background: var(--bg-dark);
    max-width: 100%;
}

.menu-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 10px 22px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.03em;
}

.menu-tab.active,
.menu-tab:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 160, 32, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.menu-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

.menu-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #000;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.menu-card-badge.new {
    background: #22c55e;
    color: #fff;
}

.menu-card-hot {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ef4444;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.menu-card-body {
    padding: 20px;
}

.menu-card-cat {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.menu-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.4;
}

.menu-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.menu-card-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 2px;
}

.btn-add-dish {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(232, 160, 32, 0.15);
    border: 1px solid rgba(232, 160, 32, 0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-add-dish:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.view-all-wrap {
    text-align: center;
    margin-top: 48px;
}

/* =====================================================
   ABOUT / STORY SECTION
===================================================== */
.about-section {
    background: var(--bg-section);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-sub {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 220px;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    border: 4px solid var(--bg-section);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.about-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 48px;
    left: -32px;
    background: var(--primary);
    color: #000;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(232, 160, 32, 0.3);
}

.about-badge-num {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.about-badge-text {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 4px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(232, 160, 32, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================================================
   PROMO SECTION
===================================================== */
.promo-section {
    background: var(--bg-dark);
    padding-top: 80px;
    padding-bottom: 80px;
}

.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.promo-card-bg {
    position: absolute;
    inset: 0;
}

.promo-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.promo-card-body {
    position: relative;
    z-index: 2;
    padding: 28px;
}

.promo-tag {
    display: inline-block;
    background: var(--primary);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promo-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 8px;
}

.promo-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 160, 32, 0.15);
    border: 1px solid rgba(232, 160, 32, 0.4);
    color: var(--primary);
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-promo:hover {
    background: var(--primary);
    color: #000;
}

/* =====================================================
   BOOKING BANNER CTA
===================================================== */
.cta-section {
    background: var(--primary);
    padding: 80px 48px;
    text-align: center;
}

.cta-section .section-label {
    color: rgba(0, 0, 0, 0.6);
}

.cta-section .section-label::before {
    background: rgba(0, 0, 0, 0.4);
}

.cta-section .section-title {
    color: #000;
}

.cta-section p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 15px;
    max-width: 600px;
    margin: 16px auto 36px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    border-radius: 10px;
    border: none;
    background: rgba(0, 0, 0, 0.18);
    color: #000;
    font-size: 14px;
    font-family: inherit;
}

.cta-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.cta-input:focus {
    outline: 2px solid rgba(0, 0, 0, 0.3);
}

.btn-cta {
    background: #000;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 10px;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-cta:hover {
    background: #1a1814;
    transform: translateY(-1px);
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: #0a0908;
    border-top: 1px solid var(--border);
    padding: 64px 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 700;
}

.footer-logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 260px;
    margin-bottom: 24px;
}

.socials {
    display: flex;
    gap: 10px;
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 15px;
    transition: all 0.2s;
}

.social:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(232, 160, 32, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.footer-contact-text {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-contact-text strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--primary);
}

/* =====================================================
   FLOATING BOOK BUTTON (Mobile)
===================================================== */
.float-book {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 36px;
    border-radius: 99px;
    box-shadow: 0 8px 24px rgba(232, 160, 32, 0.4);
    cursor: pointer;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    section {
        padding: 72px 24px;
    }

    .navbar {
        padding: 0 24px;
    }

    .nav-links,
    .nav-actions .btn-login {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-stats {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-sub {
        display: none;
    }

    .about-badge {
        left: 16px;
        top: 16px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .float-book {
        display: block;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 34px;
    }

    .cta-form {
        flex-direction: column;
    }
}