:root {
    /* Primary Colors */
    --primary-blue: #2196F3;
    --primary-orange: #FF5722;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-dark: #212529;
    --text-gray: #6C757D;
    --accent-green: #4CAF50;
    --accent-red: #F44336;

    /* Dark Mode Colors */
    --dark-bg: #121212;
    --dark-card: #1E1E1E;
    --dark-text: #E0E0E0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    transition: background-color 0.3s ease;
}

/* Navigation Styles */
.main-nav {
    background: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue), #1976D2);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.date-display {
    margin-top: 2rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Menu Container */
.menu-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Menu Cards */
.menu-card {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.card-header {
    background: var(--primary-blue);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.card-header i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.time {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Menu Items */
.menu-items {
    padding: 1.5rem;
}

.menu-item {
    background: white;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateX(5px);
}

.item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.item-info h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.veg-badge,
.non-veg-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.veg-badge {
    background: var(--accent-green);
    color: white;
}

.non-veg-badge {
    background: var(--accent-red);
    color: white;
}

.item-description {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 3rem 1rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.footer-section a {
    color: var(--bg-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Loading Spinner */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-light);
    border-top: 5px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Theme Toggle 
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Dark Mode Styles 
body.dark-mode {
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

body.dark-mode .main-nav,
body.dark-mode .menu-card {
    background-color: var(--dark-card);
}

body.dark-mode .nav-link {
    color: var(--dark-text);
}

body.dark-mode .menu-item {
    background-color: var(--dark-card);
}

body.dark-mode .item-description {
    color: var(--dark-text);
}

/* Animations */
/* Add/Update these dark mode styles in your styles.css */
body.dark-mode {
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

body.dark-mode .main-nav {
    background-color: var(--dark-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .menu-card {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .nav-link {
    color: var(--dark-text);
}

body.dark-mode .menu-item {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .item-info h3 {
    color: var(--dark-text);
}

body.dark-mode .item-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Theme toggle button */
.theme-toggle {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px;
    border-radius: 50%;
}

body.dark-mode .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--dark-text);
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-section {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .menu-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}
/* Updated Footer Styles */
.footer-section:last-child {
    text-align: center;
}

.footer-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    font-size: 2rem;
    color: var(--bg-light);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--primary-blue);
    color: white;
}

.footer-bottom p {
    text-align: center;
    font-size: 1rem;
    color: var(--bg-light);
    margin-top: 2rem;
}

.footer-bottom i.fa-heart {
    color: #ff4444;
    animation: heartBeat 1.5s infinite;
}
/* Enhanced Select Styles */
select#category {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    transition: all 0.3s ease;
}

select#category:hover {
    border-color: var(--primary-blue);
}

select#category:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

/* Dark mode support */
body.dark-mode select#category {
    background-color: var(--dark-card);
    color: var(--dark-text);
    border-color: var(--dark-border);
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}
/* Print Styles */
@media print {

    .main-nav,
    .theme-toggle,
    .footer {
        display: none;
    }

    .menu-card {
        break-inside: avoid;
        box-shadow: none;
    }
}
/* Updated Contact Section Styles */
.contact-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), #1976D2);
    color: white;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-option {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
}

.contact-option h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.feedback-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feedback-button:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Dark Mode Support */
body.dark-mode .contact-section {
    background: linear-gradient(135deg, var(--primary-blue), #1565C0);
}

body.dark-mode .contact-option {
    background: rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .contact-option {
        width: 100%;
    }
}
/* Active link styles */
.nav-link.active {
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary-blue);
}

/* Dark mode support for active link */
body.dark-mode .nav-link.active {
    background: rgba(33, 150, 243, 0.2);
    color: var(--primary-blue);
}

/* Responsive navbar */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    body.dark-mode .nav-links {
        background: var(--dark-card);
        border-top: 1px solid var(--dark-border);
    }
}
/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

body.dark-mode .mobile-menu-toggle {
    color: var(--dark-text);
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        /* Adjust based on your navbar height */
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        text-align: left;
        border-radius: 8px;
    }

    body.dark-mode .nav-links {
        background: var(--dark-card);
        border-top: 1px solid var(--dark-border);
    }

    .nav-container {
        justify-content: space-between;
    }

    /* Animation for menu items */
    .nav-links.show .nav-link {
        animation: slideIn 0.3s ease forwards;
        opacity: 0;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Animate each nav link with delay */
    .nav-links.show .nav-link:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.show .nav-link:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.show .nav-link:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links.show .nav-link:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-links.show .nav-link:nth-child(5) {
        animation-delay: 0.5s;
    }

    .nav-links.show .nav-link:nth-child(6) {
        animation-delay: 0.6s;
    }

    .nav-links.show .nav-link:nth-child(7) {
        animation-delay: 0.7s;
    }
}

/* Overlay for mobile menu */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.show {
    display: block;
}
/* Remove the light blue effect for index.html */
.nav-link:hover {
    /* Remove or override the blue background */
    background: transparent;
    color: var(--primary-blue);
    /* Keep the text color change if desired */
}

.nav-link.active {
    /* Remove the blue background for active state */
    background: transparent;
    color: var(--primary-blue);
    /* Keep the text color if desired */
}

/* For dark mode */
body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
    background: transparent;
    color: var(--primary-blue);
}

/* If you want to keep the effect only for mobile menu */
@media (max-width: 1024px) {
    .nav-link:hover {
        background: rgba(33, 150, 243, 0.1);
        /* Keep the effect only for mobile */
    }

    body.dark-mode .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}
/* Update navbar link colors */
.nav-links .nav-link {
    color: #000000;
    /* Black color for nav links */
    font-weight: 500;
    /* Make the text slightly bolder for better visibility */
}

/* Keep hover effect but only change opacity */
.nav-links .nav-link:hover {
    opacity: 0.8;
    background: transparent;
}

/* Dark mode adjustments */
body.dark-mode .nav-links .nav-link {
    color: var(--dark-text);
    /* Keep white/light color for dark mode */
}

/* Mobile menu specific styles */
@media (max-width: 1024px) {
    .nav-links .nav-link {
        color: #000000;
    }

    body.dark-mode .nav-links .nav-link {
        color: var(--dark-text);
    }
}