:root {
    --primary-color: #3e2723;
    --accent-color: #d4a373;
    --accent-hover: #bc8a59;
    --bg-main: #fcfbf9;
    --bg-light: #ffffff;
    --text-main: #2d2d2d;
    --text-muted: #666666;
    --border-color: #eaeaea;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


h1,
h2,
h3,
h4,
.logo,
.logo-footer {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}


.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background: transparent;
}


.logo-img {
    max-height: 150px;
    width: auto;
    display: block;
    transition: var(--transition);
}


.navbar.scrolled .logo-img {
    max-height: 100px;
}


.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--bg-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}


.btn {
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-light);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 1px solid var(--bg-light);
    color: var(--bg-light);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.btn-facebook {
    background: #d4a373;
    color: white;
}

.btn-facebook:hover {
    background: #a75502;
    transform: translateY(-2px);
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-light);
    background: url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 24px;
    color: var(--bg-light);
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin: 0 auto 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}


.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.menu-alert {
    background-color: #f0f7ff;
    border: 1px solid #cce3ff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    box-shadow: var(--shadow-sm);
}

.alert-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.alert-content svg {
    color: #1877F2;
    flex-shrink: 0;
    margin-top: 4px;
}

.alert-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.alert-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}


.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.menu-category h3 {
    font-size: 1.8rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 30px;
}

.menu-category ul {
    list-style: none;
}

.menu-category li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.menu-item-info {
    display: flex;
    flex-direction: column;
}

.menu-item-info .name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.menu-item-info .desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.menu-category .price {
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-color);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 39, 35, 0.2);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}


.footer {
    background: var(--primary-color);
    color: var(--bg-main);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.logo-footer {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--bg-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--bg-light);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icon {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.social-icon:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .menu-alert {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .alert-content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .navbar.scrolled .menu-toggle {
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle.active {
        opacity: 1;
        visibility: visible;
    }


    .nav-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        transition: var(--transition);
    }

    .navbar.scrolled .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 10px;
    }

    .logo {
        margin: 0 auto;
        transition: var(--transition);
    }

    .navbar.scrolled .logo {
        margin: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: -100%;
        top: 0;
        background-color: var(--bg-light);
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease-in-out;
        z-index: 999;
    }


    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        color: var(--primary-color) !important;
        font-size: 1.5rem;
    }

    .nav-cta {
        display: none;
    }


    .menu-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background-color: var(--bg-light);
    }

    .navbar.scrolled .bar {
        background-color: var(--primary-color);
    }

    .menu-toggle.active .bar {
        background-color: var(--primary-color);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--bg-light);
}

.navbar.scrolled .bar {
    background-color: var(--primary-color);
}


.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}


.footer-col.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}


.footer-logo {
    max-height: 80px;
    width: auto;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
}