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

:root {
    --text-color: #333;
    --theme-color: #e74c3c;
    --theme-lightcolor: #e74c3c99;
    --light-text: #fff;
    --bg-color: #e6e6e6;
    --nav-bg: #fff;
    --hero-overlay: rgba(0, 0, 0, 0.4);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.dark-theme {
    --theme-color: #e74c3c;
    --theme-lightcolor: #c0392b;
    --text-color: #f0f0f0;
    --light-text: #f0f0f0;
    --bg-color: #121212;
    --nav-bg: #1e1e1e;
    --hero-overlay: rgba(0, 0, 0, 0.7);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
    overflow-x: hidden;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--nav-bg);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--theme-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo i {
    margin-right: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

#Home {
    color: var(--theme-color);
    font-weight: 600;
}

.nav-links #Home::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--theme-color);
}

.nav-links a:hover {
    color: var(--theme-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--theme-color);
    bottom: -4px;
    left: 0;
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
}

.cart-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    margin-right: 1.5rem;
    position: relative;
    transition: var(--transition);
}

.cart-btn:hover {
    color: var(--theme-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--theme-color);
    color: var(--light-text);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Theme Toggle Icon */
.theme-icon {
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.theme-icon:hover {
    color: var(--theme-color);
    transform: rotate(30deg);
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    transition: all 1s ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
}

.hero-content {
    text-align: center;
    color: var(--light-text);
    z-index: 10;
    padding: 0 2rem;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    background: var(--theme-color);
    color: var(--light-text);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--theme-lightcolor);
}

/* Enhanced Hero Section */
.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    display: flex;
    position: relative;
    z-index: 2;
}

.searchcontainer {
    display: none;
}

#search-results {
    padding: 1rem 1rem;
}

#search-results h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-color);
}
#search-results h2 span {
    color: var(--theme-color);
    text-transform: capitalize;
}


#search-results-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 1rem;
}


/* Cart Section */
.cart-section {
    padding: 4rem 5%;
    background-color: var(--bg-color);
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-items {
    background: var(--nav-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-header h3 {
    color: var(--text-color);
    font-size: 1.3rem;
}

.clear-cart {
    background: none;
    border: none;
    color: var(--theme-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.clear-cart:hover {
    text-decoration: underline;
}

.empty-cart {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-color);
    opacity: 0.7;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--theme-color);
}

.empty-cart p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.browse-menu {
    display: inline-block;
    background: var(--theme-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
}

.browse-menu:hover {
    background: var(--theme-lightcolor);
}

/* Cart Item */
.cart-item {
    position: relative;
    display: flex;
    margin-bottom: 1.5rem;
    justify-content: space-between;
    flex-direction: row;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cart-item-img {
    width: 100%;
    height: 124px;
    border-radius: 5px;
    flex: 1;
    overflow: hidden;
    margin-right: 0.5rem;
}

.cart-item-img img {
    width: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 24px;
}

.cart-item-price {
    color: var(--theme-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 24px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background: var(--bg-color);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 24px;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--theme-color);
    color: white;
}

.quantity {
    margin: 0 0.8rem;
    color: var(--text-color);
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 45px;
}

.remove-item:hover {
    text-decoration: underline;
}

/* Cart Summary */
.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-card {
    background: var(--nav-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.summary-card h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.summary-details {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.checkout-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--theme-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: var(--theme-lightcolor);
}

/* Expense Tracker */
.expense-tracker {
    background: var(--nav-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.expense-tracker h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.expense-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.expense-form .form-group input {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: var(--bg-color);
    color: var(--text-color);
}

.add-expense {
    background: var(--theme-color);
    color: white;
    height: 35px;
    border: none;
    border-radius: 5px;
    padding: 0 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.add-expense:hover {
    background: var(--theme-lightcolor);
}

.expense-list {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.expense-header {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.expense-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.expense-item:last-child {
    border-bottom: none;
}

.expense-name {
    flex: 1;
}

.expense-amount {
    font-weight: 500;
}

.remove-expense {
    margin-left: 1rem;
    color: #e74c3c;
    cursor: pointer;
    background: none;
    border: none;
}

.no-expenses {
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    padding: 1rem 0;
}

.expense-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--text-color);
}

/* Suggested Items */
.suggested-items {
    margin-top: 3rem;
}

.suggested-items h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.suggested-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
    justify-content: center;
    gap: 2.5rem;
    row-gap: 0.5rem;
}

.suggested-card {
    background: var(--nav-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.suggested-card:hover {
    transform: translateY(-5px);
}

.suggested-img {
    height: 150px;
    overflow: hidden;
}

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

.suggested-card:hover .suggested-img img {
    transform: scale(1.05);
}

.suggested-info {
    padding: 1rem;
}

.suggested-info h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.suggested-info p {
    color: var(--theme-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.add-to-cart-btn {
    width: 36%;
    padding: 0.5rem;
    background: var(--theme-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--theme-lightcolor);
}

/* simple loader */
.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-bottom: 4px solid #FF3D00;
    border-left: 4px solid transparent;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*skeleton loader */
.skeleton-loader {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.skeleton-card {
    background-color: var(--nav-bg);
    padding: 15px;
    width: 300px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-image {
    width: 100%;
    height: 180px;
    background-color: var(--bg-color);
    border-radius: 6px;
    animation: pulse 1.5s infinite ease-in-out;
    margin-bottom: 10px;
}

.skeleton-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skeleton-cuisine {
    width: 30%;
    height: 16px;
    background-color: var(--bg-color);
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-price {
    width: 20%;
    height: 20px;
    background-color: var(--bg-color);
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-title {
    width: 80%;
    height: 24px;
    background-color: var(--bg-color);
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
    margin: 5px 0;
}

.skeleton-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.skeleton-rating {
    width: 25%;
    height: 16px;
    background-color: var(--bg-color);
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-button {
    width: 30%;
    height: 36px;
    background-color: var(--bg-color);
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.6;
    }
}

/* Dark theme support is automatic since we're using CSS variables */
/* Responsive Cart */
@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }

    .expense-form {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .search-wrapper {
        width: 90%;
    }

    .search-input {
        padding: 0.8rem;
    }
}

.categories {
    padding: 1rem 5%;
    background-color: var(--bg-color);
}

.category-card:hover {
    border-color: var(--theme-color);
    box-shadow: 0 0 13px 4px var(--theme-lightcolor);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--theme-color);
}

.category-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-top: 30px;
}

#category-results {
    display: flex;
    margin-top: 35px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.category-grid h2 {
    position: absolute;
    top: 0px;
    left: 20px;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.category-grid h2 span {
    font-weight: bold;
    color: var(--theme-color);
}

.category-card {
    background: var(--nav-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--theme-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.category-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.category-btn {
    display: inline-block;
    background: var(--theme-color);
    color: var(--light-text);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.category-btn:hover {
    background: var(--theme-lightcolor);
}

.food-menu {
    padding: 4rem 5%;
    background-color: var(--bg-color);
}

.food-card {
    background: var(--nav-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 300px;
    transition: var(--transition);
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.food-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.food-card:hover .food-img img {
    transform: scale(1.05);
}

.food-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--theme-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.food-info {
    padding: 1.5rem;
}

.food-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.food-header h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 0;
}

.food-price {
    color: var(--theme-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.food-desc {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.food-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.food-rating {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.food-rating i {
    color: #FFD700;
}

.add-to-cart {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart:hover {
    background: var(--theme-lightcolor);
}

/* Contact Section */
.contact-section {
    padding: 4rem 5%;
    background-color: var(--bg-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    background: var(--nav-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--theme-color);
    box-shadow: 0 0 13px 4px var(--theme-lightcolor);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--theme-color);
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-details h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-form {
    background: var(--nav-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 2px var(--theme-lightcolor);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--theme-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--theme-lightcolor);
}

.map-container {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Menu Section */
.menu-section {
    padding: 4rem 5%;
    background-color: var(--bg-color);
}

.menu-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.filter-select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--nav-bg);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 2px var(--theme-lightcolor);
}

.search-group {
    flex: 2;
    min-width: 300px;
    transform: translateY(13px);
    display: flex;
    transform: translateY(10px)
}

#menu-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.search-group .search-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    background-color: var(--nav-bg);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.search-group .search-input:focus {
    outline: none;
    border-color: var(--theme-color);
}

.search-group .search-btn {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 0 1.2rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-group .search-btn:hover {
    background: var(--theme-lightcolor);
}

.menu-category {
    margin-bottom: 2rem;
    width: 100%;
}

.category-title {
    font-size: 1.8rem;
    color: var(--theme-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--theme-lightcolor);
}

.menu-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.menu-item {
    width: 330px;
    background: var(--nav-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.item-img {
    height: 200px;
    overflow: hidden;
}

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

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

.item-info {
    padding: 1.5rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.item-name {
    color: var(--theme-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.item-price {
    color: var(--theme-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.item-desc {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-rating {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.item-rating i {
    color: #FFD700;
}

.add-to-cart {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart:hover {
    background: var(--theme-lightcolor);
}

/* About Us Section */
.about-section {
    padding: 0 5% 4rem;
    background-color: var(--bg-color);
}

/* About Hero */
.about-hero {
    height: 70vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://plus.unsplash.com/premium_photo-1661962305366-0c62646fd249?fm=jpg&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8cmVzdGF1cmFudCUyMGJhY2tncm91bmR8ZW58MHx8MHx8fDA%3D&ixlib=rb-4.1.0&q=60&w=3000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.about-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Our Story */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.story-content {
    padding: 2rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.03);
}

.milestones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.milestone {
    background: var(--nav-bg);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.milestone .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-color);
    display: block;
    margin-bottom: 0.5rem;
}

.milestone p {
    margin: 0;
    font-size: 0.9rem;
}

/* Our Philosophy */
.about-philosophy {
    margin-bottom: 4rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-card {
    background: var(--nav-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-color);
    box-shadow: 0 0 13px 4px var(--theme-lightcolor);
}

.philosophy-icon {
    font-size: 2.5rem;
    color: var(--theme-color);
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.philosophy-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Meet the Team */
.about-team {
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--nav-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--theme-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.team-social a:hover {
    background: white;
    color: var(--theme-color);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.team-info p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.team-bio {
    margin-top: 1rem;
    line-height: 1.6;
}

/* Testimonials */
.about-testimonials {
    margin-bottom: 4rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--nav-bg);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--theme-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-quote p {
    color: var(--text-color);
    line-height: 1.6;
    padding-left: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: #FFD700;
}

/* Awards & Recognition */
.about-awards {
    margin-bottom: 2rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.award-card {
    background: var(--nav-bg);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-5px);
    border-color: var(--theme-color);
    box-shadow: 0 0 13px 4px var(--theme-lightcolor);
}

.award-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}

.award-card h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.award-card p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Reservation Section */
.reservation-section {
    padding: 4rem 5%;
    background-color: var(--nav-bg);
}

.reservation-subtitle {
    text-align: center;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.reservation-form-container {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.reservation-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.form-row .form-group {
    flex: 1;
}

.reservation-form .form-group {
    margin-bottom: 1.2rem;
}

.reservation-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    background: var(--nav-bg);
    color: var(--text-color);
    transition: var(--transition);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 2px var(--theme-lightcolor);
}

.reservation-form textarea {
    resize: vertical;
    min-height: 80px;
}

.reservation-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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 0.8rem center;
    background-size: 1rem;
}

.reservation-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--theme-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.reservation-submit-btn:hover {
    background: var(--theme-lightcolor);
    transform: translateY(-2px);
}

.reservation-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--theme-color);
    box-shadow: 0 0 13px 4px var(--theme-lightcolor);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--theme-color);
    margin-right: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.info-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.info-link {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.info-link:hover {
    text-decoration: underline;
}

/* Responsive Reservation Section */
@media (max-width: 992px) {
    .reservation-container {
        grid-template-columns: 1fr;
    }

    .reservation-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .reservation-info {
        grid-template-columns: 1fr;
    }

    .reservation-section {
        padding: 3rem 5%;
    }
}

/* Date Picker Styling */
input[type="date"] {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
}

input[type="date"]:after {
    content: "📅";
    color: var(--text-color);
    padding: 0 0.5rem;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

input[type="date"]:focus:after {
    color: var(--theme-color);
}

/* Reservation Modal */
.reservation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--nav-bg);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-body {
    color: var(--text-color);
}

.modal-body h3 {
    color: var(--theme-color);
    margin-bottom: 1rem;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-close-btn {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.modal-close-btn:hover {
    background: var(--theme-lightcolor);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content p {
        font-size: 1.2rem;
    }

    .milestones {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 40vh;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .philosophy-grid,
    .team-grid,
    .testimonial-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .remove-item {
        position: absolute;
        top: 0px;
        right: 0px;
    }
}

/* Responsive Menu Section */
@media (max-width: 768px) {
    .menu-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group,
    .search-group {
        min-width: 100%;
    }

    .search-group {
        transform: translateY(0);
    }

    .menu-section {
        padding: 3rem 5%;
    }
}

/* Responsive Contact Section */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 3rem 5%;
    }
}

.features {
    padding: 3rem 5%;
    background-color: var(--nav-bg);
    border-top: 1px solid var(--theme-color);
    border-bottom: 1px solid var(--theme-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition);
}

.feature-icon {
    font-size: 2rem;
    color: var(--theme-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.app-badges {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 25%;
}

.app-badges div {
    display: flex;
    font-size: 1.5rem;
    color: #fff;
}

.app-badges div i {
    color: var(--theme-color);
}

.app-badges div p {
    margin-left: 10px;
    font-size: 19px;
    display: flex;
    align-items: center;
}

/* Footer */
footer {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    background: var(--theme-color);
}

footer .content {
    max-width: 1350px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .content p,
a {
    color: #fff;
}

footer .content .box {
    width: 33%;
    transition: all 0.4s ease;
}

footer .content .topic {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

footer .content p {
    text-align: justify;
}

footer .content .lower .topic {
    margin: 24px 0 5px 0;
}

footer .content .lower i {
    padding-right: 16px;
}

footer .content .middle {
    padding-left: 80px;
}

footer .content .middle a {
    line-height: 32px;
}

footer .content .right input[type="text"] {
    height: 45px;
    width: 97%;
    outline: none;
    color: #222222;
    border-radius: 5px;
    padding-left: 10px;
    font-size: 17px;
    border: 2px solid #222222;
}

footer .content .right input[type="submit"] {
    height: 42px;
    width: 97%;
    font-size: 18px;
    color: #121212;
    background: #fff;
    outline: none;
    border-radius: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 12px;
    border: 2px solid #222222;
    transition: all 0.3s ease-in-out;
}

.content .right input[type="submit"]:hover {
    background: none;
    border: 2px solid #fff;
    color: #fff;
}

footer .content .media-icons a {
    font-size: 16px;
    height: 45px;
    width: 45px;
    display: inline-block;
    text-align: center;
    line-height: 43px;
    border-radius: 5px;
    border: 2px solid #222222;
    margin: 30px 5px 0 0;
    transition: all 0.3s ease;
}

.content .media-icons a:hover {
    border-color: #fff;
}

footer .bottom {
    width: 100%;
    text-align: right;
    color: #d9d9d9;
    padding: 0 40px 5px 0;
}

footer .bottom a {
    color: #fff;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    footer .content .middle {
        padding-left: 50px;
    }

    footer .content .box {
        width: 50%;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    nav {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 80px;
        width: 50%;
        height: calc(100vh - 80px);
        background-color: var(--nav-bg);
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        margin-left: 0;
        opacity: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
        margin-right: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .search-container {
        width: 90%;
    }

    .food-menu {
        padding: 3rem 5%;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        width: 70%;
    }

    .nav-actions {
        margin-left: auto;
    }

    footer {
        position: relative;
    }

    footer .content .box {
        width: 100%;
        margin-top: 30px;
    }

    footer .content .middle {
        padding-left: 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Animation */
.nav-active {
    transform: translateX(0%) !important;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@media (max-width: 768px) {
    .categories {
        padding: 3rem 5%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

/* Toggle Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}