:root {
    --app-accent: #e07a5f;     /* Sophisticated Burnt Orange */
    --app-dark: #3d405b;       /* Charcoal Blue-Grey */
    --app-bg: #f4f1de;         /* Off-white Parchment */
    --footer-bg: #3d405b;
    --footer-text: #adb5bd;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--app-bg);
    color: #333;
    margin: 0;
    padding: 0;
}

.lang-option {
    border: 1px solid #dee2e6;
    background: white;
    transition: all 0.2s;
    border-radius: 12px;
}

.lang-option:hover {
    border-color: var(--app-accent);
    color: var(--app-accent);
    transform: translateY(-2px);
}

.lang-option.selected {
    background-color: var(--app-accent) !important;
    color: white !important;
}

.lang-option.selected .fw-bold {
    color: white;
}

.main-wrapper {
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 25px rgba(0,0,0,0.05);
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

@media (max-width: 768px) {
    .main-wrapper {
        max-width: 100%;
        box-shadow: none;
    }
}

.brand-logo {
    max-height: 100px; 
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--app-accent);
    padding: 5px;
}

/* --- Navigation --- */
.nav-container {
    position: relative; 
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); 
    border-bottom: 1px solid #eee;

}

.nav-scroller {
    overflow-x: auto;
    white-space: nowrap;
    padding: 15px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    text-align: center;
}

.nav-scroller::-webkit-scrollbar {
    display: none;
}

.nav-link {
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--app-accent);
}

.nav-link.active {
    color: var(--app-dark);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: var(--app-accent);
}

/* --- Typography --- */
.page-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--app-dark);
    margin: 40px 0 30px;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
}

/* --- Card Styles --- */
.menu-card {
    background-color: var(--app-dark);
    border-radius: 20px;
    padding: 15px 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    /* Smooth Transition for Zoom */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

/* ZOOM EFFECT ON HOVER */
.menu-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 5;
}

.card-image-wrapper {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--app-accent);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    background: #fff;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image Inner Zoom on Card Hover */
.menu-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding-left: 20px;
    text-align: right;
    flex-grow: 1;
}

.item-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--app-accent);
}

.item-ingredients {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.card-footer-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 15px;
    font-size: 0.9rem;
    border-top: 1px dotted rgba(255,255,255,0.2);
    padding-top: 10px;
}

.more-link {
    color: var(--app-accent);
    font-style: italic;
    text-decoration: none;
    font-weight: 600;
}

/* --- Ribbon Badge (Must Try / Best Seller) --- */
.ribbon {
    position: absolute;
    top: 5px; 
    right: 5px;
    width: 40px;
    height: 40px;
    background: var(--app-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px; 
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 10;
    transform: rotate(15deg);
    line-height: 1;
}

.ribbon::after {
    content: '';
    position: absolute;
    bottom: -4px; 
    left: 50%;
    transform: translateX(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--app-accent);
}

/* --- Floating Buttons --- */
.back-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    color: var(--app-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 100;
    cursor: pointer;
    transition: transform 0.2s;
}

.back-btn:hover {
    transform: scale(1.1);
}

.lang-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--app-dark);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 100;
    cursor: pointer;
    transition: transform 0.2s;
}

.lang-btn:hover {
    transform: scale(1.1);
}

/* --- Modal Styling --- */
.modal-content {
    background-color: var(--app-bg);
}



/* --- Animations --- */
.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Footer Styling --- */
.footer-legal {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.75rem;
    line-height: 1.5;
    border-top: 1px solid #e9ecef;
}

.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    position: relative;
}

.footer-divider {
    opacity: 0.1;
    border-color: white;
}

.main-footer h5 {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
}

.main-footer h6 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-icon-link {
    transition: transform 0.3s;
    display: inline-block;
}

.social-icon-link:hover {
    transform: translateY(-5px);
}

.fb-color { color: #1877F2; }
.ig-color { color: #E1306C; }

.contact-link {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: white;
}

.contact-highlight {
    color: var(--app-accent);
    font-weight: bold;
}

@media (min-width: 768px) {
    .footer-col-border {
        border-right: 1px solid rgba(255,255,255,0.1);
    }
}

.qr-box {
    background: white;
    padding: 10px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.sub-footer {
    background-color: #111;
    color: #555;
    font-size: 0.7rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}