:root {
    --primary-color: #6a3a14;
    --secondary-color: #341b0f;
    --accent-color: #6a3a14;
    --background-color: #FFFFFF;
    --text-color: #341b0f;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* Header Styles */
header {
    background-color: var(--white);
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    height: 80px;
}

.logo {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #6a3a14;
    display: flex;
    align-items: center;
    height: 80px;
    overflow: visible;
    z-index: 1001;
    position: relative;
    width: 50%;
}

.logo-img {
    height: 220px;
    max-height: 220px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1002;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #6a3a14;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    display: block;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #6a3a14;
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1003;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #6a3a14;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(52, 27, 15, 0.7), rgba(52, 27, 15, 0.7)), url('https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-6/467530092_122105893958616252_6766182375682295817_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=cc71e4&_nc_ohc=lC2Ftz29pxYQ7kNvwExYEqA&_nc_oc=Adno-adpTjxem367eLwnvYoi2DZcUMPSjocv8uEGRNYPWZoFlEtRU2rkJa4OcwOPTxU&_nc_zt=23&_nc_ht=scontent-lga3-1.xx&_nc_gid=dRmYb8U3oKEb3zfLcPpVMA&oh=00_AfOEIASnJ8nWuGvHc0m-xVy8k-xs4CrI02Vx7VzN6pS_6Q&oe=684A9ECF') center center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 280px 20px 182px 20px;
    position: relative;
}

.hero h1, .hero p {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

/* Menu Section */
.menu-section {
    background-color: #341b0f;
    padding: 6rem 1rem;
    width: 100%;
    margin: 0;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #341b0f;
    z-index: -1;
}

.menu-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: var(--white);
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 1000px;
}

.category-btn {
    padding: 0.8rem 2rem;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    border-radius: 6px;
}

.category-btn.active,
.category-btn:hover {
    background-color: var(--white);
    color: #341b0f;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.menu-item {
    background: rgba(255, 255, 255, 0.98);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
}

.menu-item:hover {
    transform: translateY(-3px) scale(1.005);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6a3a14, #341b0f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    object-position: center 10%;
    margin: 0;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.menu-item:hover img {
    transform: scale(1.03);
}

.menu-item-content {
    padding: 1.5rem;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
}

.menu-item h3 {
    color: #341b0f;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: 0.5px;
    padding-right: 80px;
}

.menu-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #6a3a14, transparent);
    transition: width 0.3s ease;
}

.menu-item:hover h3::after {
    width: 80px;
}

.menu-item p {
    color: #6a3a14;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.9;
    padding-right: 80px;
}

.menu-item .price {
    color: #341b0f;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(106, 58, 20, 0.08);
    border-radius: 20px;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(106, 58, 20, 0.1);
    white-space: nowrap;
}

.menu-item:hover .price {
    background: rgba(106, 58, 20, 0.12);
    transform: translateY(-2px);
}

/* Unavailable menu item styling */
.menu-item.unavailable {
    opacity: 0.6;
    filter: grayscale(0.8);
    position: relative;
}

.menu-item.unavailable:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.menu-item.unavailable::before {
    display: none;
}

.menu-item.unavailable img {
    filter: grayscale(0.8) brightness(0.8);
}

.menu-item.unavailable img:hover {
    transform: none;
}

.unavailable-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.menu-item.unavailable h3 {
    color: #6a3a14;
    opacity: 0.7;
}

.menu-item.unavailable p {
    color: #6a3a14;
    opacity: 0.6;
}

.menu-item.unavailable .price {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.menu-item.unavailable .price:hover {
    background: rgba(220, 53, 69, 0.15);
    transform: none;
}

/* Placeholder image styling */
.placeholder-image {
    width: 100%;
    height: 100%;
    min-height: 150px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.placeholder-image span {
    color: #6a3a14;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    background-color: #6a3a14;
    padding: 6rem 1rem;
    text-align: center;
}

.about-section h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.about-section p {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background-color: #6a3a14;
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(106, 58, 20, 0.9), rgba(52, 27, 15, 0.9));
    z-index: 1;
}

.contact-section h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.contact-item p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    opacity: 0.9;
}

.contact-item:hover p {
    opacity: 1;
}

/* Footer */
footer {
    background-color: #6a3a14;
    color: var(--white);
    padding: 3rem 0 1.5rem 0;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 1.5rem auto;
    padding: 0;
    flex-wrap: wrap;
    gap: 2.5rem;
}
.footer-logo img {
    height: 64px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.18));
    border-radius: 12px;
    background: #fff;
    padding: 6px 12px;
}
.footer-nav {
    display: flex;
    gap: 2.5rem;
}
.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.footer-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent-color, #D4AF37);
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -2px;
}
.footer-nav a:hover {
    color: var(--light-gray);
}
.footer-nav a:hover::after {
    width: 100%;
}
.footer-social {
    display: flex;
    gap: 1.5rem;
}
.footer-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.footer-social a:hover {
    color: var(--light-gray);
}
.footer-copyright {
    color: var(--light-gray);
    text-align: center;
    font-size: 0.9rem;
    margin-top: 2rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 900px) {
    nav {
        padding: 0 3%;
    }
    .logo {
        width: 60%;
    }
    .logo-img {
        height: 220px;
        max-height: 220px;
        left: 50%;
    }
    .hero {
        padding: 280px 20px 182px 20px;
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    .menu-item {
        grid-template-columns: 150px 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .logo {
        width: 70%;
    }
    .logo-img {
        height: 220px;
        max-height: 220px;
        left: 50%;
    }
    .hero {
        padding: 280px 20px 182px 20px;
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0.8rem;
    }
    .menu-item {
        grid-template-columns: 120px 1fr;
    }
}

@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    .menu-item {
        grid-template-columns: 200px 1fr;
    }
}

@media (max-width: 450px) {
    .logo {
        width: 80%;
    }
    .logo-img {
        height: 220px;
        max-height: 220px;
        left: 50%;
    }
    .logo {
        height: 80px;
    }
    nav {
        padding: 0 2%;
    }
    .nav-links {
        width: 85%;
    }
    .hero {
        padding: 280px 20px 182px 20px;
    }
    .hero h1 {
        font-size: 1.2rem;
    }
    .menu-section h2, .about-section h2 {
        font-size: 1.2rem;
    }
    .menu-categories {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.2rem;
        padding: 0.2rem 0;
        margin-bottom: 1rem;
        max-width: 100vw;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .menu-categories::-webkit-scrollbar {
        display: none;
    }
    .category-btn {
        min-width: 90px;
        width: auto;
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
        flex: 0 0 auto;
        box-sizing: border-box;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0.8rem;
    }
    .menu-item {
        grid-template-columns: 1fr;
    }
    .menu-item img {
        height: 180px;
    }
    .menu-item h3 {
        font-size: 1rem;
    }
    .menu-item p {
        font-size: 0.9rem;
    }
    .about-section p, .contact-item p {
        font-size: 0.9rem;
    }
    .contact-section {
        padding: 3rem 1rem;
    }
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-item {
        width: 100%;
        justify-content: center;
        padding: 0.5rem;
    }
    .contact-item:not(:last-child)::after {
        display: none;
    }
    .contact-item p {
        text-align: center;
    }
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        padding: 1.2rem 0 0 0;
    }
    .footer-logo img {
        height: 48px;
    }
    .footer-nav {
        gap: 1.2rem;
    }
    .footer-social {
        gap: 0.8rem;
    }
    .footer-copyright {
        font-size: 0.8rem;
    }
    .menu-toggle {
        padding: 0.3rem;
    }
    .menu-toggle span {
        width: 20px;
        height: 2px;
        margin: 4px 0;
    }
    .menu-item-content {
        padding: 1rem;
        min-height: 120px;
    }

    .menu-item h3 {
        font-size: 1rem;
        padding-right: 70px;
    }

    .menu-item p {
        font-size: 0.9rem;
        padding-right: 70px;
    }

    .menu-item .price {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
        top: 1rem;
        right: 1rem;
    }
    .gallery-section h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 220px;
        max-height: 220px;
        left: 65%;
    }
    .logo {
        height: 80px;
    }
    nav {
        padding: 0 2%;
    }
    .nav-links {
        width: 85%;
    }
    .hero {
        padding: 280px 20px 182px 20px;
    }
    .hero h1 {
        font-size: 0.9rem;
    }
    .menu-section h2, .about-section h2 {
        font-size: 0.9rem;
    }
    .menu-categories {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.2rem;
        padding: 0.2rem 0;
        margin-bottom: 1rem;
        max-width: 100vw;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .menu-categories::-webkit-scrollbar {
        display: none;
    }
    .category-btn {
        min-width: 90px;
        width: auto;
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
        flex: 0 0 auto;
        box-sizing: border-box;
    }
    .menu-grid {
        padding: 0.2rem 0.05rem;
        max-width: 100vw;
        overflow-x: hidden;
    }
    .menu-item img {
        height: 60px;
        max-width: 100%;
    }
    .menu-item h3 {
        font-size: 0.7rem;
    }
    .menu-item p {
        font-size: 0.65rem;
    }
    .about-section p, .contact-item p {
        font-size: 1rem;
    }
    .contact-section {
        padding: 3rem 1rem;
    }
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-item {
        width: 100%;
        justify-content: center;
        padding: 0.5rem;
    }
    .contact-item:not(:last-child)::after {
        display: none;
    }
    .contact-item p {
        text-align: center;
    }
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        padding: 1.2rem 0 0 0;
    }
    .footer-logo img {
        height: 48px;
    }
    .footer-nav {
        gap: 1.2rem;
    }
    .footer-social {
        gap: 0.8rem;
    }
    .footer-copyright {
        font-size: 0.7rem;
    }
}

@media (max-width: 300px) {
    .logo-img {
        height: 220px;
        max-height: 220px;
        left: 70%;
    }
    .logo {
        height: 70px;
    }
    nav {
        padding: 0 1%;
    }
    .menu-toggle {
        padding: 0.3rem;
    }
    .menu-toggle span {
        width: 20px;
        height: 2px;
        margin: 4px 0;
    }
    .hero {
        padding: 280px 20px 182px 20px;
    }
}

/* Remove burger/side menu styles */
/* .menu-toggle, .side-menu-categories, #side-menu-overlay { display: none !important; } */

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Gallery Section */
.gallery-section {
    background-color: #341b0f;
    padding: 6rem 1rem;
    width: 100%;
    margin: 0;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #341b0f;
    z-index: -1;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: var(--white);
}
