:root {
    --background: #151515;
    --foreground: #f5f5f5;

    --border: #3f3f3f;
    --input: #1e1e1e;

    /* Brighter green for better contrast */
    --primary: #4CAF50;
    --primary-foreground: #0f0f0f;

    --secondary: #1f1f1f;
    --secondary-foreground: #f2f2f2;

    --muted: #262626;
    --muted-foreground: #d0d0d0;

    --success: #5fae62;
    --success-foreground: #ffffff;

    --accent: #a6d94f;
    --accent-foreground: #0f0f0f;

    --destructive: #d9534f;
    --destructive-foreground: #ffffff;

    --warning: #e0a800;
    --warning-foreground: #1a1a1a;

    --card: #1a1a1a;
    --card-foreground: #f5f5f5;

    --sidebar: #121212;
    --sidebar-foreground: #f5f5f5;
    --sidebar-primary: #242424;
    --sidebar-primary-foreground: #4CAF50;

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;

    --font-family-body: "Open Sans", sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3 {
    font-family: 'Playball', cursive !important;
}

.export-wrapper {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    font-family: var(--font-family-body);
}

.page {
    min-height: 812px;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.eyebrow {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
}

.section-title {
    font-size: 48px;
    line-height: 1.12;
    color: var(--foreground);
    margin: 0;
    font-weight: 500;
}

.section-copy {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted-foreground);
    margin: 0;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #379114, #4caf1a);
    color: #ffffff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(55, 145, 20, 0.35);
}

/* Hover */
.cta-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(55, 145, 20, 0.6);
    background: linear-gradient(135deg, #3fa61a, #5edc1f);
}

/* Click */
.cta-primary:active {
    transform: scale(0.97);
    box-shadow: 0 4px 12px rgba(55, 145, 20, 0.3);
}

/* Shine effect */
.cta-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.cta-primary:hover::before {
    left: 130%;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border: 1px solid var(--border);
    color: var(--foreground);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
    background: transparent;
}

.border-t {
    border-top: 1px solid var(--border);
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    font-size: 13px;
    color: var(--secondary-foreground);
    white-space: nowrap;
}

.muted-line {
    width: 100%;
    height: 1px;
    background: var(--border);
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: px;
    padding-bottom: px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 180px;
}

.brand img {
    width: 148px;
    height: auto;
    display: block;
}

/*** Navbar Start ***/
.sticky-section {
    background-color: #0a1b03;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 99;
}

.top-section {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 83%;
    margin: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    /* white-space: nowrap; */
}

.main-nav a {
    text-decoration: none;
    color: var(--foreground);
    font-size: 16px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    opacity: 0.92;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: stretch;
    /* padding-top: 150px; */
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.34) contrast(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(21, 21, 21, 0.92) 0%,
            rgba(21, 21, 21, 0.7) 36%,
            rgba(21, 21, 21, 0.38) 62%,
            rgba(21, 21, 21, 0.58) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 40px;
    align-items: center;
    width: 100%;
    /* padding-top: 120px; */
    /* padding-bottom: 180px; */
}

.hero-copy {
    max-width: 620px;
    padding-bottom: 24px;
}

.hero-title {
    font-size: 78px;
    line-height: 0.98;
    letter-spacing: -2.4px;
    margin: 18px 0 24px;
    font-weight: 500;
    color: var(--foreground);
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--secondary-foreground);
    max-width: 560px;
    margin: 0 0 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-card {
    align-self: center;
    margin-left: auto;
    width: 100%;
    max-width: 500px;
    background: rgba(20, 20, 20, 0.78);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-card-title {
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
    color: var(--foreground);
    font-weight: 500;
}

.hero-card-copy {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin: 0 0 22px;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 24px;
    margin-bottom: 22px;
}

.hero-card-label {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
    white-space: nowrap;
    font-weight: 600;
}

.hero-card-value {
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.6;
}

.hero-card .cta-primary {
    width: 100%;
}

.story-section {
    padding: 104px 0 48px;
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: start;
}

.story-copy-wrap {
    max-width: 500px;
}

.story-copy-wrap .eyebrow {
    margin-bottom: 18px;
    display: block;
}

.story-copy-wrap .section-title {
    margin-bottom: 22px;
}

.story-copy-wrap .section-copy {
    margin-bottom: 18px;
}

.story-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
}

.story-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.story-feature:last-child {
    border-bottom: 1px solid var(--border);
}

.story-feature-text h4 {
    margin: 0 0 8px;
    font-size: 17px;
    color: var(--foreground);
    font-weight: 500;
}

.story-feature-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.story-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.story-gallery-main,
.story-gallery-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-image-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.story-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.story-image-card.tall {
    min-height: 520px;
}

.story-image-card.small {
    min-height: 250px;
}

.story-caption {
    padding: 16px 18px 18px;
}

.story-caption h5 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--foreground);
    font-weight: 500;
}

.story-caption p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.featured-section {
    padding: 56px 0 64px;
}

.featured-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 36px;
}

.featured-header-left {
    /* max-width: 680px; */
}

.featured-header-left .eyebrow {
    display: block;
    margin-bottom: 16px;
}

.featured-header-left .section-title {
    margin-bottom: 16px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.dish-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dish-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.dish-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dish-card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.dish-meta {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.dish-meta h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    color: var(--foreground);
    font-weight: 500;
}

.dish-price {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
}

.dish-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted-foreground);
}

.dish-tag {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    white-space: nowrap;
}

.atmosphere-section {
    padding: 64px 0 72px;
}

.atmosphere-panel {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.atmosphere-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 420px;
}

.atmosphere-copy {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.atmosphere-copy .eyebrow {
    display: block;
    margin-bottom: 16px;
}

.atmosphere-copy .section-title {
    margin-bottom: 18px;
    font-size: 42px;
}

.atmosphere-copy .section-copy {
    margin-bottom: 26px;
}

.atmosphere-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    margin-top: 6px;
}

.atmosphere-point {
    min-width: 0;
}

.atmosphere-point span {
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    white-space: nowrap;
}

.atmosphere-point p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.reservation-section {
    padding: 72px 0 110px;
}

.reservation-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: stretch;
}

.reservation-intro,
.reservation-form,
.reservation-map {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.reservation-intro {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.reservation-intro .eyebrow {
    display: block;
    margin-bottom: 16px;
}

.reservation-intro h2 {
    font-size: 40px;
    line-height: 1.12;
    margin: 0 0 18px;
    font-weight: 500;
    color: var(--foreground);
}

.reservation-intro p {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted-foreground);
}

.reservation-notes {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.reservation-note {
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    line-height: 1.7;
    color: var(--secondary-foreground);
}

.reservation-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.reservation-form {
    padding: 30px 32px;
}

.reservation-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
}

.field {
    min-width: 0;
}

.field.full {
    grid-column: 1 / -1;
}

.field-label {
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    white-space: nowrap;
}

.field-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--foreground);
    font-size: 14px;
}

.field-placeholder {
    color: var(--muted-foreground);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reservation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.reservation-map {
    overflow: hidden;
}

.map-visual {
    min-height: 260px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.01) 100%);
    position: relative;
    padding: 28px;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px);
    background-size: 64px 64px;
    opacity: 0.24;
}

.map-road {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.road-one {
    width: 520px;
    height: 18px;
    top: 88px;
    left: -32px;
    transform: rotate(8deg);
}

.road-two {
    width: 18px;
    height: 360px;
    top: -28px;
    right: 160px;
    transform: rotate(-6deg);
}

.road-three {
    width: 420px;
    height: 14px;
    bottom: 78px;
    right: -40px;
    transform: rotate(-10deg);
}

.map-pin {
    position: absolute;
    top: 104px;
    right: 178px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.12);
}

.map-card {
    position: relative;
    z-index: 2;
    width: 280px;
    margin-top: 128px;
    background: rgba(21, 21, 21, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.map-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground);
}

.map-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.site-footer {
    padding: 36px 0 56px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.footer-brand h3 {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 500;
    color: var(--foreground);
}

.footer-brand p,
.footer-col p,
.footer-col a,
.footer-bottom p,
.footer-bottom a {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted-foreground);
    text-decoration: none;
    margin: 0;
}

.footer-col span {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    white-space: nowrap;
}

.footer-social {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 14px; */
    /* margin-top: 10px; */
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--foreground);
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-top: 26px;
    margin-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer-bottom .takeout-link {
    color: var(--primary);
    white-space: nowrap;
}

/* ================= NAVBAR ================= */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--foreground);
    transition: 0.4s ease;
    border-radius: 2px;
}

/* Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* menu css */
.page-wrapper {
    background-color: var(--background);
}

.menu-container {
    padding: 48px 64px 96px 64px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.menu-header {
    margin-bottom: 64px;
    margin-top: 125px;
}

.page-title {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin: 0 0 24px 0;
    letter-spacing: 2px;
    color: var(--foreground);
}

.page-subtitle {
    font-size: 15px;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.menu-card {
    display: flex;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    height: 240px;
    overflow: hidden;
}

.card-image-wrapper {
    width: 240px;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dish-title {
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    color: var(--foreground);
    letter-spacing: 0.5px;
}

.dish-price {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
}

.dish-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0 0 24px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dish-tags {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.tag {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
}

.tag-icon-wrapper {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

iconify-icon {
    font-size: 18px;
    color: var(--primary)
}

/* menu */
/* Header Section */
.menu-title {
    text-align: center;
    padding: 40px 20px 40px;
    /* margin-top: 80px; */
}

.menu-title .subtitle {
    color: #49ab19;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.menu-title h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin: 10px 0;
    font-style: italic;
}

/* Category Layout */
.menu-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-category {
    margin-bottom: 60px;
}

.category-hero {
    height: 340px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.category-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.category-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 2.8));
    width: 100%;
    padding: 40px 40px 20px 40px;
    z-index: 2;
}

.category-overlay h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin: 0;
}

/* Items Grid */
.items-grid-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.menu-item-p {
    background: linear-gradient(90deg, #121212 0%, #2c2c2c 20%, #6b6b6b79 50%, #2c2c2c 80%, #121212 100%);
    padding: 16px;
    border-radius: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.menu-item-p:hover {
    transform: translateY(-5px);
}

.menu-notes {
    background-color: #32333866;
    border: 1px solid #4e595f;
    padding: 12px 5px !important;
    margin-top: 20px;
}

.menu-notes p {
    margin-bottom: 0px !important;
    line-height: 22px;
    font-size: 14px;
}

.note-price {
    color: #63d337;
}

.menu-P {
    display: flex;
    justify-content: space-between;
    list-style: unset;
    margin: auto;
    width: 28%;
}

.menu-P p {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-header h3 {
    font-size: 1.2rem;
    color: #ffcf84;
    margin: 0;
    font-family: "Open Sans", sans-serif !important;
}

.price {
    font-weight: bold;
    color: #ffcf84;
    font-size: 22px;
}

.long-price {
    font-weight: bold;
    color: #ffcf84 !important;
    font-size: 16px !important;
}

.menu-item-p p {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin: 0;
}

.tag-menu {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #49ab19;
    border: 1px solid #49ab19;
    padding: 2px 8px;
    border-radius: 4px;
}


/*** Events Start ***/
/* .event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
} */

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(132 225 33 / 69%);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}

.event-img img {
    height: 216px;
    object-fit: cover;
}

/*** Events End ***/


/* about */
#chef-about-section {
    padding: 0px 0px;
}

.chef-about-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
}

.chef-about-photo-wrap {
    position: relative;
    min-height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--secondary);
}

.chef-about-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.06),
            rgba(0, 0, 0, 0.4));
}

.chef-about-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    /* padding: 36px; */
}

.chef-about-name {
    font-size: 32px;
    margin: 0 0 8px;
}

.chef-about-role {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 20px;
    white-space: nowrap;
}

.chef-about-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.chef-about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.chef-about-stat {
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--secondary);
    border: 1px solid var(--border);
}

.chef-about-stat-number {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 6px;
}

.chef-about-stat-label {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

#heritage-section {
    padding-top: 32px;
}

.heritage-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 32px;
    align-items: stretch;
}

.heritage-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.heritage-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.heritage-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.highlight-card {
    background: var(--secondary);
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid var(--border);
}

.highlight-title {
    font-size: 16px;
    margin: 0 0 8px;
    color: #379114;
}

.highlight-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin: 0;
}

.quote-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(140deg,
            rgba(11, 94, 32, 0.18),
            rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.quote-mark {
    font-size: 52px;
    color: var(--primary);
    line-height: 1;
}

.quote-text {
    font-size: 24px;
    line-height: 1.5;
    margin: 12px 0 18px;
}

.quote-author {
    font-size: 14px;
    color: var(--muted-foreground);
}

.order-col-shadow {
    border-radius: 10px;
    box-shadow: inset 0px 4px 24px 1px rgba(221, 200, 200, 0.28);
    transition: 0.3s;
}

.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(254, 218, 154, 0.1), rgba(254, 218, 154, 0.1)), url(img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #d4a762;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: wheat;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid black;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.contact-a {
    display: flex;
    gap: 8px;
    align-items: center;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .menu-title h1 {
        font-size: 2.5rem;
    }

    .mobile-col {
        display: block;
    }

    .category-hero {
        height: 310px;
    }

    .category-overlay {
        padding: 40px 20px 20px 20px;
    }

    .category-overlay h2 {
        font-size: 1.8rem;
    }

    .hero-card-grid {
        display: block;
    }

    .menu-P {
        display: block;
        justify-content: space-between;
        list-style: unset;
        margin: auto;
        width: 38%;
    }

    .chef-about-grid,
    .chef-about-stats,
    .heritage-grid,
    .heritage-highlights {
        display: block;
    }

    .story-section {
        padding: 64px 0 48px;
    }

    .menu-category {
        margin-bottom: 20px;
    }
}


.logos-bg {
    background-color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-logo {
    max-width: 150px;
}

.desktop-col {
    display: block;
}


/* ============================= */
/* FLOATING ORDER BUTTON â€“ ALL DEVICES */
/* ============================= */

#orderbtn-sticky {
    position: fixed;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    z-index: 9999;
}

#orderbtn-sticky a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #176806;
    border: 1px solid #176806;
    border-radius: 8px 0 0 8px;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* LARGE DESKTOP */
/* ============================= */
@media (min-width: 1400px) {
    #orderbtn-sticky a {
        font-size: 1.1rem;
        padding: 16px 26px;
    }
}

/* ============================= */
/* LAPTOP */
/* ============================= */
@media (max-width: 1199px) {
    #orderbtn-sticky a {
        font-size: 0.95rem;
        padding: 12px 18px;
    }
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 991px) {
    #orderbtn-sticky {
        top: auto;
        bottom: 25%;
        transform: none;
    }

    #orderbtn-sticky a {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

/* ============================= */
/* MOBILE (iPhone / Android) */
/* ============================= */
@media (max-width: 576px) {
    #orderbtn-sticky {
        bottom: 18%;
    }

    #orderbtn-sticky a {
        font-size: 0.8rem;
        padding: 8px 14px;
        border-radius: 6px 0 0 6px;
    }

    #orderbtn-sticky a i {
        font-size: 0.75rem;
    }
}

.field-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.field-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--foreground);
    font-size: 14px;
    padding: 10px 0;
}

/* Hide default input styles */
.field-input::-webkit-calendar-picker-indicator {
    opacity: 1;
    cursor: pointer;
    filter: invert(1);
    /* makes it white */
}

/* Textarea fix */
textarea.field-input {
    resize: none;
    height: 60px;
}

/* Keep icon aligned */
.field-box iconify-icon {
    position: absolute;
    right: 0;
}

.contact-side-img {
    height: 516px;
    object-fit: cover;
    object-position: center;
}

.d-sm-none {
    display: none;
}

.d-md-none {
    display: none !important;
}

.d-sm-block {
    display: block;
}

.text-green {
    color: #3fa61a;
}

.testimonial-marquee {
    /* background: #0a0a0a; */
    padding: 90px 0;
    overflow: hidden;
    color: #fff;
}

.marquee-header {
    text-align: center;
    margin-bottom: 80px;
}

.marquee-container {
    display: flex;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    /* Adjust speed here */
}

/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

.t-card {
    flex: 0 0 450px;
    /* Fixed width for cards */
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border: 1px solid rgba(116, 183, 46, 0.2);
    border-radius: 60px 5px 60px 5px;
    /* Asymmetrical modern look */
    transition: all 0.4s ease;
}

.t-card:hover {
    background: rgba(116, 183, 46, 0.05);
    border-color: #74b72e;
    transform: scale(1.02);
}

.t-card.accent {
    background: linear-gradient(135deg, rgba(116, 183, 46, 0.1), transparent);
}

.t-card p {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 25px;
    font-style: italic;
}

.t-name {
    color: #74b72e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

/* The Secret Sauce: Seamless Loop */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-450px * 4 - 120px));
    }

    /* (Width * Total unique cards) + (Total Gap) */
}

@media (max-width: 768px) {
    .t-card {
        flex: 0 0 320px;
        padding: 40px 30px;
    }

    .t-card p {
        font-size: 1.1rem;
    }
}

/* FAQ */
.faq-section {
    max-width: 850px;
    margin: 0px auto;
    padding: 0 20px;
    margin-bottom: 50px;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: white;
}

.faq-item {
    background: #25232338;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    border: 1px solid #6e6e6ec9;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
}

.faq-question .arrow {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    background: #131212;
    color: #a09f9f;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 10px;
}

.faq-item.active .faq-question .arrow {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px) {
    .faq-title {
        font-size: 26px;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}






/* ================= MOBILE NAV ================= */

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--background);
        flex-direction: column;
        align-items: flex-start;
        padding: 150px 24px;
        gap: 24px;
        transition: 0.4s ease;
        border-left: 1px solid var(--border);
        z-index: 1000;
    }

    .main-nav a {
        font-size: 16px;
    }

    .main-nav.active {
        right: 0;
    }

    /* Hide desktop button */
    .header-actions {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr !important;
        /* padding-top: 80px; */
        padding-bottom: 80px;
    }

    .featured-header {
        display: block;
    }

    .atmosphere-copy {
        padding: 18px;
    }

    .reservation-section {
        padding-top: 20px;
    }

    .atmosphere-section {
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .top-section {
        width: 90%;
    }
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 56px;
    }

    .story-layout {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .atmosphere-panel {
        grid-template-columns: 1fr;
    }

    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .header-inner {
        gap: 16px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero {
        min-height: auto;
        padding-top: 70px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-card {
        max-width: 100%;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .story-gallery {
        grid-template-columns: 1fr;
    }

    .atmosphere-points {
        grid-template-columns: 1fr;
    }

    .reservation-form-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .reservation-intro h2 {
        font-size: 28px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* menu css mobile */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .menu-container {
        padding: 40px 32px 80px 32px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        /* 2 → 1 column */
        gap: 28px;
    }

    .menu-card {
        height: auto;
    }

    .card-image-wrapper {
        width: 200px;
    }

    .card-content {
        padding: 24px;
    }

    .page-title {
        font-size: 40px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {

    .menu-container {
        padding: 32px 20px 64px 20px;
    }

    .menu-header {
        margin-top: 100px;
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .page-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .menu-card {
        flex-direction: column;
        /* horizontal → vertical */
        height: auto;
    }

    .card-image-wrapper {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .card-content {
        padding: 20px;
    }

    .dish-title {
        font-size: 18px;
    }

    .dish-price {
        font-size: 16px;
    }

    .dish-desc {
        font-size: 13px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {

    .menu-container {
        padding: 24px 16px 48px 16px;
    }

    .page-title {
        font-size: 26px;
    }

    .menu-header {
        margin-top: 140px;
    }

    .card-content {
        padding: 16px;
    }

    .dish-tags {
        flex-wrap: wrap;
        gap: 8px;
    }

    .tag {
        font-size: 10px;
        padding: 4px 10px;
    }
}