:root {
    /* Color Palette */
    --primary-color: #556B2F;
    /* Dark Olive Green */
    --secondary-color: #A0522D;
    /* Sienna */
    --accent-color: #8B4513;
    /* Saddle Brown */
    --bg-color: #FDF5E6;
    /* Old Lace / Cream */
    --text-color: #3E2723;
    /* Dark Brown */
    --light-text: #FFFFFF;
    --border-color: #D2B48C;
    /* Tan */

    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 80px 20px;
    --header-height: 80px;

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--body-font);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: #3E4E22;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Menu Book Concept */
.menu-book-container {
    padding: 100px 20px;
    background: #e0d5c5;
    /* Wooden table color */
    background-image: radial-gradient(circle, #d0c5b5 1px, transparent 1px);
    background-size: 20px 20px;
}

.menu-book {
    max-width: 1100px;
    margin: 0 auto;
    background: #8B4513;
    /* Leather cover */
    padding: 20px;
    border-radius: 10px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(0, 0, 0, 0.2);
    display: flex;
    position: relative;
    min-height: 800px;
}

.menu-book::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.menu-page {
    flex: 1;
    background: #fdf5e6;
    /* Paper color */
    padding: 60px;
    position: relative;
    box-shadow: inset 0 0 100px rgba(139, 69, 19, 0.05);
    background-image:
        linear-gradient(90deg, transparent 95%, rgba(0, 0, 0, 0.03) 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}

.menu-page.left {
    border-radius: 5px 0 0 5px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-page.right {
    border-radius: 0 5px 5px 0;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.page-content {
    height: 100%;
    border: 1px solid rgba(160, 82, 45, 0.2);
    padding: 40px;
    position: relative;
}

.page-content::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid rgba(160, 82, 45, 0.1);
    pointer-events: none;
}

.book-category-title {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px double var(--secondary-color);
    padding-bottom: 15px;
}

.book-item {
    margin-bottom: 30px;
    position: relative;
}

.book-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.book-item-header h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
}

.book-item-dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
}

.book-item-price {
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--body-font);
}

.book-item p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

/* Page Footer Decor */
.page-number {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--heading-font);
    font-size: 0.9rem;
    color: #aaa;
}

@media (max-width: 991px) {
    .menu-book {
        flex-direction: column;
        max-width: 600px;
    }

    .menu-book::before {
        display: none;
    }

    .menu-page.left,
    .menu-page.right {
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .menu-page.right {
        margin-bottom: 0;
    }

    .menu-page {
        padding: 40px 20px;
    }
}

/* Menu Premium Styles */
.menu-hero {
    height: 40vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 0;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.menu-hero-content {
    position: relative;
    z-index: 10;
}

.menu-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.menu-sections {
    padding: 80px 0;
}

.category-header-banner {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin: 60px 0 40px;
    display: flex;
    align-items: center;
}

.category-header-banner:first-child {
    margin-top: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.banner-overlay h2 {
    color: white;
    font-size: 2.8rem;
    position: relative;
    z-index: 5;
    font-family: var(--heading-font);
}

.menu-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.menu-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.menu-card.signature {
    border-left: 5px solid var(--secondary-color);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.menu-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    font-family: var(--heading-font);
}

.premium-badge {
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.menu-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    display: block;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .menu-grid-premium {
        grid-template-columns: 1fr;
    }

    .banner-overlay h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .menu-hero h1 {
        font-size: 2.8rem;
    }

    .category-header-banner {
        height: 180px;
    }

    .banner-overlay {
        padding: 0 30px;
    }

    .banner-overlay h2 {
        font-size: 1.8rem;
    }

    .menu-card {
        padding: 25px;
    }
}