/* ==========================================================================
   Pho Le 1 - Premium Custom Stylesheet (Vanilla CSS)
   ========================================================================== */

/* CSS Reset & Variable Definitions */
:root {
    /* Color Palette */
    --bg-dark: #0a0b0d;
    --bg-darker: #050608;
    --bg-card: rgba(20, 24, 33, 0.65);
    --bg-card-hover: rgba(26, 31, 42, 0.85);
    
    --primary: #ff5e14;          /* Warm fiery orange (soup broth & spices) */
    --primary-hover: #e04f0d;
    --primary-glow: rgba(255, 94, 20, 0.25);
    
    --accent: #e6b800;           /* Golden egg noodle accent */
    --accent-green: #2ec4b6;     /* Fresh herbs green */
    
    --text-light: #f8f9fa;
    --text-muted: #9da8b6;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 94, 20, 0.3);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Animation & Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-inset: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Reset & Base Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 94, 20, 0.3);
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & Globals */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Helper Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--primary);
}

.mb-2 { margin-bottom: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }

/* Premium Glassmorphism Utility */
.glassmorphism {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium), var(--shadow-inset);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glassmorphism:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(255, 94, 20, 0.1), var(--shadow-premium);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 94, 20, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #8e0e00 0%, var(--primary) 50%, #8e0e00 100%);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}

.announcement-bar a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 5px;
}

.announcement-bar a:hover {
    color: #fff;
}

/* Navigation Header */
.navbar {
    position: fixed;
    top: 36px; /* Below announcement */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

/* When announcement bar is active and scrolled */
.navbar.scrolled {
    top: 0;
    padding: 14px 0;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: auto;
    height: 54px;
    max-width: 190px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Hamburger active transformation */
.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background-color: var(--bg-darker);
    z-index: 1050;
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

.drawer-order-btn {
    width: 100%;
}

.no-scroll {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, rgba(142, 14, 0, 0.25) 0%, rgba(10, 11, 13, 1) 80%),
                linear-gradient(135deg, #120e0d 0%, #050608 100%);
    overflow: hidden;
    padding-top: 100px;
}

/* Blur lights background effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 350px;
    height: 350px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    animation: pulse 8s infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
    animation: pulse 12s infinite alternate-reverse;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.12; }
    100% { transform: scale(1.3) translate(30px, -20px); opacity: 0.18; }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 740px;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 94, 20, 0.1);
    border: 1px solid rgba(255, 94, 20, 0.25);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.85rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-food-showcase {
    position: relative;
    min-height: 510px;
}

.hero-dish {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 6, 8, 0.72);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
}

.hero-dish img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-dish figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(5, 6, 8, 0.72);
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-dish-main {
    width: min(88%, 500px);
    height: 420px;
    right: 0;
    top: 44px;
    border-radius: 28px;
}

.hero-dish-side {
    width: 210px;
    height: 160px;
    border-radius: 18px;
}

.hero-dish-side.top {
    left: 0;
    top: 0;
}

.hero-dish-side.bottom {
    left: 36px;
    bottom: 12px;
}

/* Beautiful Wave Divider SVG */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.hero-wave .shape-fill {
    fill: var(--bg-dark);
}

/* Quick Info Cards Section */
.quick-info-section {
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.info-card {
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-icon-wrapper {
    width: 54px;
    height: 54px;
    background: rgba(255, 94, 20, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: inset 0 0 10px rgba(255, 94, 20, 0.1);
}

.info-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    min-height: 48px;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.card-link i {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: var(--transition-smooth);
}

.card-link:hover i {
    transform: translateX(4px);
}

.phone-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.phone-highlight:hover {
    color: var(--primary);
    transform: scale(1.05);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.open {
    background: rgba(46, 196, 182, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(46, 196, 182, 0.3);
}

.status-badge.closed {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* Section Common Headers */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Menu Section Styles */
.menu-section {
    padding: 80px 0;
}

/* Horizontal Scroll Tabs */
.menu-nav-wrapper {
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 32px;
    scrollbar-width: thin;
}

.menu-nav-wrapper::-webkit-scrollbar {
    height: 4px;
}

.menu-nav-wrapper::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

.menu-tabs {
    display: flex;
    gap: 12px;
    min-width: max-content;
    justify-content: center;
    margin: 0 auto;
    padding: 0 4px;
}

.menu-tab {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 125px;
    box-shadow: var(--shadow-inset);
}

.menu-tab i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 6px;
    transition: var(--transition-smooth);
}

.menu-tab:hover i,
.menu-tab.active i {
    transform: scale(1.15);
}

.menu-tab .sub-tab {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-tab:hover {
    background: rgba(255, 94, 20, 0.04);
    border-color: var(--primary);
    color: var(--primary);
}

.menu-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 6px 15px rgba(255, 94, 20, 0.35);
}

.menu-tab.active i {
    color: #fff;
}

.menu-tab.active .sub-tab {
    color: rgba(255, 255, 255, 0.75);
}

/* Search Box */
.menu-search-wrapper {
    max-width: 500px;
    margin: 0 auto 36px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.05rem;
}

#menu-search {
    width: 100%;
    padding: 14px 20px 14px 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    box-shadow: var(--shadow-inset);
    transition: var(--transition-smooth);
}

#menu-search:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 94, 20, 0.15);
}

/* Category Title Header */
.category-header {
    padding: 24px 30px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-header h3 {
    font-size: 1.75rem;
    color: var(--accent);
}

.category-header p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Menu Grid & Item Cards */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.menu-card {
    padding: 0 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 275px;
    /* CSS animation properties */
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
}

.menu-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    display: block;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), rgba(5, 6, 8, 0.72));
    border-bottom: 1px solid var(--border-color);
}

/* Interactive elements inside Menu card */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin: 20px 24px 12px;
}

.card-title-block {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-id-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 94, 20, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.item-title {
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 600;
}

.item-vietnamese-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2px;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.item-sizes {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    white-space: nowrap;
}

.size-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
}

.size-price small {
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 4px;
}

.item-description {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0 24px;
}

.menu-card-actions {
    margin: 20px 24px 0;
    display: flex;
}

.item-order-btn {
    width: 100%;
    border-radius: 12px;
    padding: 10px 16px;
}

/* Animations classes injected by JS */
.menu-card.animated {
    animation: slideUpFade 0.5s ease-out forwards;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search results empty state */
.search-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-no-results-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    opacity: 0.5;
}

.search-no-results h4 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.search-no-results p {
    color: var(--text-muted);
}

/* Disclaimer Wrapper */
.menu-disclaimer-wrapper {
    margin-top: 48px;
}

.menu-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.01);
    border-left: 3px solid var(--primary);
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
}

.menu-disclaimer i {
    color: var(--primary);
    margin-right: 6px;
}

/* About / Story Section */
.about-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 300;
}

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

.about-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 94, 20, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.about-feat h4 {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Visual Block (Quote Testimonial Card) */
.about-visual {
    position: relative;
    padding: 0;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px dashed rgba(255, 94, 20, 0.2);
    border-radius: 8px;
    pointer-events: none;
    z-index: 2;
}

.about-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.visual-card {
    padding: 34px 42px 42px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 2.25rem;
    color: var(--primary);
    opacity: 0.25;
    margin-bottom: 20px;
}

.visual-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.visual-card cite {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.scrolled-in {
    opacity: 1;
    transform: translateY(0);
}

/* Contact & Map Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: stretch;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-detail-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.link-light:hover {
    color: var(--primary);
    text-decoration: underline;
}

.map-wrapper {
    padding: 10px;
    overflow: hidden;
}

.map-wrapper iframe {
    border-radius: 10px;
    filter: grayscale(0.2) contrast(1.1) invert(0.02); /* Clean up embed colors slightly */
}

/* Main Footer */
.main-footer {
    background-color: var(--bg-darker);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-links-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.disclaimer-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    opacity: 0.65;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.design-by {
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary);
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 94, 20, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Design & Media Queries
   ========================================================================== */

/* Large screens down to tablets */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-food-showcase {
        width: min(100%, 620px);
        min-height: 430px;
        margin: 0 auto;
    }

    .hero-dish-main {
        height: 360px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Medium screens (Tablets) */
@media (max-width: 768px) {
    .navbar {
        top: 36px;
        padding: 16px 0;
    }
    
    .nav-menu, .nav-order-btn {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-section {
        height: auto;
        padding: 140px 0 80px;
    }

    .hero-food-showcase {
        min-height: 360px;
    }

    .hero-dish-main {
        width: 82%;
        height: 310px;
    }

    .hero-dish-side {
        width: 170px;
        height: 125px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .menu-tabs {
        justify-content: flex-start;
        padding: 0 16px;
    }
    
    .menu-tab {
        min-width: 110px;
        padding: 10px 16px;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 480px) {
    .announcement-bar {
        font-size: 0.8rem;
    }

    .logo img {
        height: 44px;
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .category-header {
        padding: 20px 16px;
    }
    
    .menu-card {
        padding-bottom: 20px;
    }

    .card-header {
        margin: 18px 16px 12px;
    }

    .item-description {
        margin: 0 16px;
    }

    .menu-card-actions {
        margin: 18px 16px 0;
    }

    .hero-food-showcase {
        min-height: 300px;
    }

    .hero-dish-main {
        width: 100%;
        height: 260px;
        top: 20px;
        border-radius: 18px;
    }

    .hero-dish-side {
        display: none;
    }
}

/* Toast Notification */
#toast-notification {
    position: fixed;
    bottom: 50px; /* Raised a bit more to avoid overlapping buttons */
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(18, 18, 18, 0.96); /* Elegant dark background */
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    z-index: 2000;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6); /* Deep dark shadow */
    border: 1px solid rgba(255, 94, 20, 0.35); /* Subtle brand color accent border */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

#toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
