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

:root {
    --primary-dark: #2c2520;
    --primary-brown: #5d4e37;
    --accent-gold: #d4a574;
    --text-light: #f7f3ee;
    --text-dark: #4a4a4a;
    --bg-cream: #f7f3ee;
    --bg-white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(93, 78, 55, 0.15);
    --shadow-strong: 0 20px 40px rgba(93, 78, 55, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-cream);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Header - Modern, Dynamic */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.transparent {
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-brown);
    text-decoration: none;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

header.transparent .logo {
    color: var(--text-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

header.transparent .nav-links a {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Breadcrumb - Enhanced */
.breadcrumb {
    background: linear-gradient(135deg, 
        rgba(237, 230, 219, 0.95) 0%, 
        rgba(217, 207, 192, 0.95) 100%
    );
    padding: 1rem 0;
    margin-top: 60px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
    backdrop-filter: blur(10px);
}

.breadcrumb .container {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb span {
    color: #7a6b56;
}

.breadcrumb .active {
    background: linear-gradient(135deg, var(--primary-brown), #6d5a42);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
}

/* Hero Section - Enhanced */
.hero {
    height: 40vh;
    background: linear-gradient(135deg, 
        rgba(44, 37, 32, 0.85) 0%, 
        rgba(74, 62, 42, 0.8) 50%, 
        rgba(93, 78, 55, 0.85) 100%
    ),
    var(--hero-bg-image) center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg, 
        rgba(93, 78, 55, 0.1), 
        rgba(212, 165, 116, 0.05), 
        rgba(44, 37, 32, 0.1), 
        rgba(122, 107, 86, 0.08)
    );
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
}

/* Menu Section - Modern Design */
.menu-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 246, 240, 0.95) 100%
    );
}

.menu-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-brown);
    letter-spacing: -1px;
    position: relative;
}

.menu-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), #e6b885);
    border-radius: 2px;
}

.menu-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7a6b56;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Category Headers - Enhanced */
.category-header {
    text-align: center;
    margin: 3rem 0 2rem 0;
    position: relative;
    text-transform: uppercase;
}

.category-header:first-child {
    margin-top: 0;
}

.category-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-brown);
    font-weight: 600;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 246, 240, 0.95) 100%
    );
    padding: 1rem 2rem;
    position: relative;
    z-index: 2;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    display: inline-block;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.category-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(212, 165, 116, 0.5), 
        transparent
    );
    z-index: 1;
}

.volume-info {
    font-size: 0.75rem;
    font-weight: normal;
    color: #7a6b56;
    text-transform: none;
    opacity: 0.8;
}

/* Menu Grid - Compact List Style */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0.2rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(248, 246, 240, 0.8) 100%
    );
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 12px;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(5px);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.item-ingredients {
    font-size: 0.9rem;
    color: #7a6b56;
    margin-bottom: 0.5rem;
    font-style: italic;
    line-height: 1.5;
}

.item-price {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 2rem;
    min-width: 70px;
    text-align: right;
    font-family: 'Inter', sans-serif;
}

.dual-price {
    display: flex;
    color: var(--accent-gold);
    font-weight: 600;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-family: 'Inter', sans-serif;
}

.dual-price .small-price {
    font-size: 0.95rem;
}

.dual-price .large-price {
    font-size: 0.95rem;
}

/* Find Us Section - Enhanced */
.find-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(248, 246, 240, 0.8) 0%, 
        rgba(237, 232, 220, 0.8) 100%
    );
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-brown);
    letter-spacing: -1px;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), #e6b885);
    border-radius: 2px;
}

.find-us-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 246, 240, 0.95) 100%
    );
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    margin: 0 auto;
    max-width: 1000px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    backdrop-filter: blur(10px);
}

.find-us-info {
    padding: 3rem;
}

.find-us-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-brown);
}

.find-us-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--primary-brown);
}

.find-us-info p {
    margin: 0.5rem 0;
    color: #6b5b4a;
    line-height: 1.6;
}

.find-us-info a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.find-us-info a:hover {
    color: var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
}

.find-us-map {
    position: relative;
    min-height: 400px;
}

.find-us-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* Footer - Modern */
footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-brown));
    color: var(--text-light);
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), #e6b885);
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
    font-weight: 400;
}

footer a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 3rem 2rem 2rem;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    background: linear-gradient(135deg, var(--accent-gold), #e6b885);
    color: var(--primary-dark);
    font-weight: bold;
    border-radius: 12px;
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

.footer-column p,
.footer-column a {
    color: rgba(247, 243, 238, 0.9);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.social-icons a {
    display: inline-block;
    background: linear-gradient(135deg, #6d4c2c, #8d6642);
    color: var(--text-light);
    padding: 0.6rem 0.8rem;
    margin-right: 0.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--accent-gold), #e6b885);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(141, 102, 66, 0.3);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(224, 214, 199, 0.8);
}

/* Animations - Enhanced */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

.menu-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }
.menu-item:nth-child(7) { animation-delay: 0.7s; }
.menu-item:nth-child(8) { animation-delay: 0.8s; }

/* Responsive Design - Enhanced */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    nav {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    nav a {
        display: block;
        font-size: 1rem;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-links a {
        display: block;
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-item {
        padding: 1rem;
    }

    .find-us-card {
        grid-template-columns: 1fr;
    }

    .find-us-map {
        min-height: 300px;
    }

    .menu-section,
    .find-us-section {
        padding: 60px 0;
    }

    .category-header h2 {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        position: relative;
    }

    .menu-item {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
        padding: 1.2rem 0;
    }

    .item-price {
        margin-left: 0;
        text-align: left;
        font-size: 1rem;
    }

    .logo {
        font-size: 2rem;
    }

    .category-header h2 {
        font-size: 1.3rem;
        padding: 0.6rem 1.2rem;
    }
}