:root {
    --primary-color: #265c30;
    /* Green */
    --accent-color: #e5b339;
    /* Gold */
    --accent-magenta: #d81b60;
    /* Pink/Magenta highlight */
    --bg-color: #faf9f6;
    /* Off-white */
    --text-main: #333333;
    --text-muted: #666666;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    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-main);
    line-height: 1.6;
    /* Subtle background texture */
    background-image: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20 20.5V18H0v-2h20v-2.5L22.5 16 25 13.5v-2H0v-2h25v-2.5L27.5 8 30 5.5v-2H0v-2h30v-2.5L32.5 0l2.5 2.5v2h5v2h-5v2.5L37.5 8l2.5 2.5v2h-5v2h5v2h-5v2.5l2.5 2.5 2.5-2.5v-2h-5v-2h5v-2h-5v-2.5l-2.5-2.5L35 10.5v2h-5v-2h5V8.5L37.5 6 35 3.5v-2h-5v2h5V5.5L32.5 8 30 10.5v2h-5v-2h5v-2H0z" fill="%23d0d0d0" fill-opacity="0.05" fill-rule="evenodd"/%3E%3C/svg%3E');
}

/* Hero Section */
.hero {
    position: relative;
    height: 35vh;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(8px);
    margin: 0 20px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 280px;
    width: 100%;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Sticky Nav Menu */
.sticky-nav {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 2px solid var(--accent-color);
}

.sticky-nav ul {
    list-style: none;
    display: flex;
    overflow-x: auto;
    padding: 0 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.sticky-nav ul::-webkit-scrollbar {
    display: none;
}

.sticky-nav li {
    flex: 0 0 auto;
    margin-right: 10px;
}

.sticky-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #eee;
    background: #fafafa;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.sticky-nav a.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(38, 92, 48, 0.3);
}

.sticky-nav a:not(.active):hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: #eef5ef;
}

/* Menu Container */
.menu-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.category-section {
    margin-bottom: 50px;
    scroll-margin-top: 80px;
    /* Offset for sticky header */
}

.category-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid var(--accent-color);
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-item.highlighted {
    border-left: 4px solid var(--accent-magenta);
    background: linear-gradient(90deg, #fff2f6 0%, #fff 100%);
}

.menu-item.highlighted .menu-item-name,
.menu-item.highlighted .menu-item-price {
    color: var(--accent-magenta);
    font-size: 1.15rem;
}

.menu-item.highlighted .menu-item-desc {
    color: #b81650;
    font-weight: 500;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
}

.menu-item-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.menu-item-dots {
    flex-grow: 1;
    border-bottom: 1px dashed #ccc;
    position: relative;
    top: -4px;
    min-width: 20px;
}

.menu-item-price {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-style: italic;
}

/* Footer Section */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer p {
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.copyright {
    font-size: 0.8rem !important;
    opacity: 0.7;
    margin-top: 20px !important;
}

/* Responsiveness */
@media (max-width: 768px) {
    .menu-item-header {
        flex-wrap: wrap;
    }

    .menu-item-dots {
        display: none;
    }

    .menu-item-name {
        width: 100%;
        margin-bottom: 5px;
    }

    .category-title {
        font-size: 1.5rem;
    }
}