:root {
    --bg-color: #FFFFFF;
    --bg-color-alt: #F2F4F5;
    --text-color: #1C1C1E;
    --text-muted: #6E6E73;
    --accent-color: #E64A19;
    --accent-hover: #BF360C;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section.bg-dark {
    background-color: var(--bg-color-alt);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Navbar */
#navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.brand:hover {
    opacity: 0.8;
}

.brand-logo {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    text-align: center;
    gap: 2rem;
}

.nav-links.active {
    display: flex;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    bottom: -4px;
    left: 0;
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 70px);
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('assets/images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
    color: #FFFFFF;
}

.hero-content p {
    font-size: 1.2rem;
    color: #E0E0E0;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(42, 30, 25, 0.18);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #FFFFFF;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

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

.btn-nav {
    background-color: var(--accent-color);
    color: #FFFFFF !important;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem !important;
    opacity: 1;
    /* Override .btn-primary opacity if present */
    animation: none;
    /* Override animation */
    box-shadow: 0 4px 10px rgba(230, 74, 25, 0.3);
}

.btn-nav:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 74, 25, 0.4);
}

.nav-links li a.btn-nav::after {
    display: none;
}

/* Menu Section */
.menu-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-nav {
    position: sticky;
    top: 80px;
    /* Offset for sticky navbar */
    z-index: 90;
    background: var(--bg-color);
    padding-bottom: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overscroll-behavior: contain;
}

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

.menu-nav::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.menu-nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.menu-nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition);
}

.menu-nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.menu-nav-link.active {
    background-color: var(--text-color);
    color: #FFFFFF;
}

.menu-category {
    margin-bottom: 4rem;
    scroll-margin-top: 140px;
    /* offset for fixed headers */
}

.menu-category-title {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: left;
    text-transform: capitalize;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(230, 74, 25, 0.3);
}

.menu-item-img,
.menu-item-placeholder {
    width: 140px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-bottom: none;
    flex-shrink: 0;
}

.menu-item-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.menu-item-name {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
}

.menu-item-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Promotion Section */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.5s ease-in-out;
    margin: 0;
    padding: 0;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.promo-img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    color: var(--accent-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: #FFFFFF;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Location Section */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: var(--bg-color-alt);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container {
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

.location-details h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.location-details h3:first-child {
    margin-top: 0;
}

.location-details p {
    color: var(--text-muted);
}



/* Footer */
footer {
    padding: 3rem 0;
    background-color: var(--bg-color-alt);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-content .logo {
    font-size: 2rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.social-links a:hover {
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive - Desktop */
@media (min-width: 768px) {
    .navbar-container {
        padding: 1.5rem 5%;
    }

    .logo {
        font-size: 2.5rem;
    }

    .brand-logo {
        height: 70px;
        width: 70px;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: static;
        background: transparent;
        padding: 0;
        width: auto;
    }

    .hamburger {
        display: none;
    }

    .hero-content h1 {
        font-size: 5rem;
    }

    .contact-form {
        grid-template-columns: 1fr 1fr;
    }

    /* Menu Desktop Layout */
    .menu-layout {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }

    .menu-nav {
        flex: 0 0 250px;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: calc(100vh - 160px);
        white-space: normal;
        border-bottom: none;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 2rem;
        padding-right: 1.5rem;
        top: 140px;
    }

    /* Customize vertical scrollbar for desktop nav */
    .menu-nav::-webkit-scrollbar {
        width: 4px;
        height: auto;
    }

    .menu-nav::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 4px;
    }

    .menu-nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-container {
        flex: 1;
    }

    .location-wrapper {
        grid-template-columns: 2fr 1fr;
    }
}