
    :root {
    /* Your Restaurant Color Palette */
    --primary: #E63946;          /* Vibrant Red for call-to-actions */
    --primary-dark: #D62839;
    --primary-light: #FF6B6B;
    --primary-50: #FFE5E7;
    
    --secondary: #F4A261;        /* Warm Orange for accents */
    --secondary-dark: #E76F51;
    --secondary-light: #FFD166;
    
    --accent: #0056b3;           /* Blue for highlights */
    --accent-dark: #007bff;
    --accent-light: #83C5BE;
    
    --neutral-dark: #2D3436;     /* Dark gray for text */
    --neutral-medium: #636E72;   /* Medium gray */
    --neutral-light: #DFE6E9;    /* Light gray for borders */
    --neutral-50: #F8F9FA;       /* Backgrounds */
    
    --success: #3498DB;          /* Blue for success */
    --warning: #F39C12;          /* Orange for warnings */
    --error: #E74C3C;            /* Red for errors */
    --info: #3498DB;             /* Blue for info */
    
    --surface: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Footer with Matching Theme */
.theme-footer {
    background: linear-gradient(180deg, var(--neutral-dark), #1a1a1a);
    color: white;
    border-top: 2px solid var(--primary);
    position: relative;
    z-index: 100;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    margin-bottom: 20px;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--neutral-medium);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    background: rgba(230, 57, 70, 0.1);
    transform: translateX(5px);
}

.footer-links i {
    width: 16px;
    text-align: center;
    color: var(--secondary-light);
}

.footer-text {
    color: var(--neutral-medium);
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-info p {
    color: var(--neutral-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-info i {
    color: var(--secondary);
    width: 16px;
}

/* Bottom Section - Matching allLeftMenu.php exactly */
.footer-bottom {
    padding: 20px 0;
}

.footer-bottom .copyright-container {
    max-width: 100%;
    padding: 0;
}

.footer-bottom .copyright-line {
    margin-bottom: 15px;
}

.footer-bottom .copyright-text {
    color: var(--neutral-medium);
    font-size: 14px;
}

.footer-bottom .designer-credit a {
    color: var(--secondary-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 4px;
    background: rgba(244, 162, 97, 0.1);
}

.footer-bottom .designer-credit a:hover {
    color: white;
    background: rgba(244, 162, 97, 0.2);
    text-decoration: none;
}

.footer-bottom .designer-credit i {
    color: var(--secondary);
}

.footer-bottom .legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-bottom .legal-links a {
    color: var(--neutral-medium);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-bottom .legal-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.footer-bottom .divider {
    color: var(--neutral-medium);
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
    }
    
    .footer-bottom .legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom .divider {
        display: none;
    }
    
    .copyright-line {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 20px 0;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
}