 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            max-width: 100%;
        }

        body {
            background-color: #d1d1d1;
                  font-family: 'Roboto', Arial, sans-serif;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 100;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            width: 100%;
            box-sizing: border-box;
        }

        .logo {
            font-family: 'Brush Script MT', cursive!important;
            color: #b89651;
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            font-weight: bold;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
                color:#0a3d2d;
        }

        /* Wishlist Button */
        .wishlist-button {
            position: relative;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
            color: #333;
        }

        .wishlist-button:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #ff0303;
        }

        .wishlist-button i {
            font-size: 18px;
        }

        .wishlist-count {
            position: absolute;
            top: -5px;
            right: -5px;
                     background: #0a3d2d;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .wishlist-count.visible {
            transform: scale(1);
        }

        /* Cart Button */
        .cart-button {
            position: relative;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
            color: #333;
        }

        .cart-button:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
        }

        .cart-button img {
            width: 18px;
            height: 18px;
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #48bb78;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .cart-count.visible {
            transform: scale(1);
        }

        .cta-button {
            background: linear-gradient(45deg, #2b2b2b, #272727);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
        }

        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -350px;
            width: min(350px, 80vw);
            height: 100vh;
            background: #ffffff;
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: right 0.3s ease;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            box-sizing: border-box;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
        }

        .cart-header h2 {
            color: #333;
            font-size: 24px;
            font-weight: 600;
        }

        .cart-close-button {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .cart-close-button:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #ff0000;
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .cart-item:hover {
            background: #e9ecef;
        }

        .cart-item-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: #666;
            font-size: 14px;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btn {
               background: #0a3d2d;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .quantity-btn:hover {
            background: #4ba24e;
        }

        .quantity-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .remove-from-cart {
            background: #ff4757;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .remove-from-cart:hover {
            background: #ff3742;
            transform: scale(0.95);
        }

        .empty-cart {
            text-align: center;
            padding: 40px 20px;
            color: #666;
        }

        .empty-cart i {
            font-size: 48px;
            color: #ddd;
            margin-bottom: 15px;
        }

        .cart-footer {
            padding: 20px 0;
            border-top: 2px solid #f0f0f0;
        }

        .cart-total {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            text-align: right;
        }

        .cart-checkout-button {
             background: #0a3d2d;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 14px;
            cursor: pointer;
            font-weight: 500;
            font-size: 16px;
            width: 100%;
            transition: all 0.3s ease;
        }

        .cart-checkout-button:hover {
                   background: #0a3d2d;
            transform: translateY(-2px);
        }

        /* Wishlist Modal */
        .wishlist-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .wishlist-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .wishlist-content {
            background: white;
            border-radius: 20px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideInUp 0.3s ease;
        }

        .wishlist-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
        }

        .wishlist-header h2 {
            color: #333;
            font-size: 24px;
            font-weight: 600;
        }

        .close-button {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close-button:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #ff0000;
        }

        .wishlist-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .wishlist-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .wishlist-item:hover {
            background: #e9ecef;
        }

        .wishlist-item-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .wishlist-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .wishlist-item-info {
            flex: 1;
        }

        .wishlist-item-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .wishlist-item-description {
            color: #666;
            font-size: 14px;
        }

        .remove-from-wishlist {
            background: #ff4757;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .remove-from-wishlist:hover {
            background: #ff3742;
            transform: scale(0.95);
        }

        .empty-wishlist {
            text-align: center;
            padding: 40px 20px;
            color: #666;
        }

        .empty-wishlist i {
            font-size: 48px;
            color: #ddd;
            margin-bottom: 15px;
        }

      /* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal-content {
    background: rgb(239, 239, 239);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.3s ease;
    text-align: center;
}

.product-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.product-modal-header h2 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.product-modal-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #007d1f;
    margin-bottom: 10px;
}

.product-modal-description {
    font-size: 16px;
    color: #424242;
    line-height: 1.5;
    margin-bottom: 10px;
}

.product-modal-price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.product-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.product-modal-add-btn,
.product-modal-wishlist-btn {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border: none;
}

.product-modal-add-btn:hover {
    transform: scale(1.1);
    background: #48bb78;
    color: white;
}

.product-modal-wishlist-btn:hover {
    transform: scale(1.1);
    background: #ff4757;
    color: white;
}

.product-modal-wishlist-btn.active {
    background: #e95555;
    color: white;
}

@media (max-width: 768px) {
    .product-modal-content {
        width: 95%;
        padding: 20px;
    }

    .product-modal-image {
        width: 90px;
        height: 90px;
    }

    .product-modal-add-btn,
    .product-modal-wishlist-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
        /* Burger Menu */
        .burger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 101;
        }

        .burger span {
            background: #333;
            height: 3px;
            width: 100%;
            position: absolute;
            left: 0;
            transition: all 0.3s ease;
        }

        .burger span:nth-child(1) { top: 0; }
        .burger span:nth-child(2) { top: 8.5px; }
        .burger span:nth-child(3) { top: 17px; }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 8.5px;
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 8.5px;
        }

        /* Mobile Sidebar */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -250px;
            width: min(250px, 80vw);
            max-width: 100vw;
            height: 100vh;
            background: #ffffff;
            backdrop-filter: blur(10px);
            z-index: 99;
            transition: right 0.3s ease;
            padding: 80px 20px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            box-sizing: border-box;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav a {
            text-decoration: none;
            color: #333;
            font-size: 1.2rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover {
            color: #ea6666;
        }

        .mobile-wishlist-button,
        .mobile-cart-button {
            display: flex;
            align-items: center;
            gap: 10px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: #333;
            font-size: 1.2rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .mobile-wishlist-button:hover,
        .mobile-cart-button:hover {
            color: #ea6a66;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/hero-bg.jpg') center/cover no-repeat;
            z-index: 1;
            transition: transform 0.1s ease-out;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('plain-backdrop-decorative-gray-textured-min.jpg') center/cover no-repeat;
            z-index: 2;
        
        }

        .decorative-images {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }

        .decorative-image {
            position: absolute;
            opacity: 0.7;
            object-fit: contain;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        .architecture-image {
            position: absolute;
            top: 80%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 450px;
            height: 500px;
            z-index: 6;
            animation: slideInUp 1s ease-out 0.3s both;
            background: url('dish-with-meat-potato-wooden-desk-removebg-preview.png') center/contain no-repeat;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
        }

        .hero-content {
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            text-align: center;
            width: min(100%, 1200px);
            padding: 0 20px;
            box-sizing: border-box;
        }

        .hero h1 {
            font-size: clamp(4rem, 8vw, 12rem);
            font-weight: 100;
            color: #ffffff;
               letter-spacing: 8px;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        /* Food App Section Styles */
        .food-app-section {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #141414 0%, #000000 100%);
            min-height: 100vh;
            width: 100vw;
         color: #c9a961;
            position: relative;
            overflow-x: hidden;
        }

        .food-app-container {
            max-width: 100%;
            margin: 0 auto;
            background: #0a3d2d;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        .food-app-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            width: 100%;
            position: relative;
            z-index: 100;
        }

        .food-app-bookmark {
            width: 24px;
            height: 32px;
            background: #4a5568;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 70%, 0 85%);
        }

        .food-app-profile-pic {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
            font-size: 18px;
        }

        .food-app-profile-pic:hover {
            transform: scale(1.1);
        }

        .food-app-content {
            padding: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .food-app-filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 100px;
        }

        .food-app-filter-btn {
            background: #ffffff;
            border: 1px solid  #ae9d2d;
            color: #ae9d2d;
            padding: 10px 20px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .food-app-filter-btn:hover {
            background: #424242;
            color: white;
        }

        .food-app-filter-btn.active {
            background: #292929;
          color: #ae9d2d;
        }

        .food-app-hero {
            background: rgb(243, 243, 243);
            border-radius: 0px;
            padding: 40px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 200px;
        }

        .food-app-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
            animation: food-app-pulse 4s ease-in-out infinite;
        }

        @keyframes food-app-pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        .food-app-hero-content {
            position: relative;
            z-index: 1;
            flex: 1;
            max-width: 60%;
        }

        .food-app-hero h1 {
            font-size: 36px;
            color: #4a5568;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .food-app-hero p {
            line-height: 1.6;
            margin-bottom: 30px;
            color: #718096;
            font-size: 16px;
        }

        .food-app-view-more-btn {
            background: #4a5568;
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .food-app-view-more-btn:hover {
            background: #2d3748;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(74, 85, 104, 0.3);
        }

        .food-app-hero-image {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            overflow: hidden;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            animation: food-app-float 3s ease-in-out infinite;
            flex-shrink: 0;
        }

        .food-app-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes food-app-float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .food-app-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 0.5fr));
            gap: 24px;
            margin-top:-20px!important;
            margin-bottom: 40px;
        }

        .food-app-card {

                background: linear-gradient(135deg, hwb(51 84% 2%) 0%, #fff8d5 100%);
             
            border-radius: 24px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            padding: 20px;
            text-align: center;
            margin-top: 60px;
            display: flex;
            flex-direction: column;
          
        }

        .food-app-card:hover {
                background: linear-gradient(135deg, hsl(0, 0%, 100%) 0%, #ffffff 100%);
            transform: translateY(-12px);
  
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

  .food-app-food-image {
    width: 200px;
    top: -80px; /* Adjusted to move the image higher */
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 14px;
    cursor: pointer;
    position: relative; /* Ensure proper positioning context */
    z-index: 10; /* Ensure the image overlaps the card */
}

        .food-app-food-image img {
            width: 100%;
            height: 100%;
        
            object-fit: cover;
        }

      .food-app-food-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    position:relative;
    color: #015707;
   top: -20%; /* Added to move the title higher */
}

.food-app-food-description {
    font-size: 16px;
    color: #3b3b3b;
       position:relative;
     top: -19%;
    line-height: 1.5;
    margin-bottom: 10px;
    margin-top: -5px; /* Added to move the description higher */
}

        .food-app-food-price {
            font-size: 18px;
                 position:relative;
     top: -18%;
            font-weight: 600;
            color: #505050;
            margin-bottom: 20px;
        }

        .food-app-add-btn {
            position: absolute;
            bottom: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            background: rgb(0, 79, 4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
            border: none;
        }

        .food-app-add-btn:hover {
            transform: scale(1.1);
            background: #4a5568;
            color: white;
        }

        .food-app-wishlist-btn {
            position: absolute;
            bottom: 24px;
            left: 24px;
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #4a5568;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
            border: none;
        }

        .food-app-wishlist-btn:hover {
            transform: scale(1.1);
            background: #f55555;
            color: white;
        }

        .food-app-wishlist-btn.active {
            background: #b10000;
            color: white;
        }

        .food-app-featured {
            background: white;
            border-radius: 0px;
            padding: 40px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 32px;
            margin-bottom: 40px;
        }

        .food-app-featured-image {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            overflow: hidden;
            flex-shrink: 0;
        }

        .food-app-featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .food-app-featured-content h3 {
            font-size: 28px;
            color: #4a5568;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .food-app-featured-content p {
            color: #718096;
            line-height: 1.6;
            font-size: 16px;
        }

        .food-app-highlight {
            color: #4a5568;
            font-weight: 600;
        }

        .food-app-footer {
            text-align: center;
            padding: 30px;
            color: #a0aec0;
            font-size: 16px;
        }

        .food-app-fade-in {
            opacity: 0;
            animation: food-app-fadeIn 0.6s ease-forwards;
        }

        @keyframes food-app-fadeIn {
            to { opacity: 1; }
        }

        .food-app-card:nth-child(1) { animation-delay: 0.1s; }
        .food-app-card:nth-child(2) { animation-delay: 0.2s; }
        .food-app-card:nth-child(3) { animation-delay: 0.3s; }

        .food-app-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .food-app-card:hover::before {
            opacity: 1;
        }
        @media (max-width: 408px) {







        }
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .burger {
                display: block;
            }

            .cta-button {
                color: white !important;
                background: #000000!important;
                display: none;
            }

            .hero h1 {
                font-size: 4rem;
            }

            .architecture-image {
                width: 450px;
                height: 450px;
                top: 80%;
                transform: translate(-50%, -40%);
            }

            .hero-content {
                top: 15%;
                padding: 0 15px;
            }

            .hero-bg {
                background-attachment: scroll;
            }

            .food-app-header {
                padding: 16px 20px;
            }

            .food-app-content {
                padding: 20px;
            }

            .food-app-filter {
                flex-wrap: wrap;
                gap: 10px;
                margin-bottom: 40px;
            }

            .food-app-filter-btn {
                padding: 8px 16px;
                font-size: 14px;
            }

            .food-app-hero {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }

            .food-app-hero-content {
                max-width: 100%;
                margin-bottom: 20px;
            }

            .food-app-hero h1 {
                font-size: 35px;
            }

            .food-app-hero-image {
                width: 120px;
                height: 120px;
            }

            .food-app-grid {
                grid-template-columns: repeat(2, minmax(150px, 1fr));
                gap: 16px;
            }

            .food-app-card {
                padding: 16px;
            }

            .food-app-food-image {
                width: 200px;
                height: 200px;
            }

            .food-app-food-title {
                font-size: 18px;
            }

            .food-app-food-description {
                font-size: 14px;
            }

            .food-app-food-price {
                font-size: 16px;
            }

            .food-app-add-btn,
            .food-app-wishlist-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .food-app-featured {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }

            .food-app-featured-content {
                margin-top: 20px;
            }

            .wishlist-content,
            .product-modal-content {
                width: 95%;
                padding: 20px;
            }

            .cart-sidebar {
                width: min(300px, 90vw);
            }

            .decorative-image {
                transform: scale(0.8);
                opacity: 0.6;
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                top: 10%;
                width: min(95%, 95vw);
                padding: 0 10px;
            }

            .architecture-image {
                width: 400px;
                height: 380px;
                top: 78%;
                transform: translate(-50%, -30%);
            }

            .decorative-image {
                transform: scale(0.6);
            }

            .food-app-header {
                padding: 12px 16px;
            }

            .food-app-content {
                padding: 16px;
            }

            .food-app-hero {
                padding: 24px;
            }

            .food-app-card {
                padding: 12px;
            }

            .food-app-food-image {
                width: 110px;
                height: 110px;
            }

            .food-app-food-title {
                font-size: 16px;
            }

            .food-app-food-description {
                font-size: 12px;
            }

            .food-app-food-price {
                font-size: 14px;
            }

            .food-app-featured {
                padding: 24px;
            }
        }

        .middle-title{
            color: #b89651;
          font-size: 80px;
            font-weight: 300;
            letter-spacing: 8px;
            margin-bottom: 20px;
            text-align: center;
            margin-bottom: 40px;
        }




          /* Header */
        .palais-header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
        }

        .palais-contact-info {
            color: white;
            font-size: 14px;
        }

 
        .palais-nav a:hover {
            opacity: 0.7;
        }

        .palais-reserve-btn {
            background: #c9a961;
            color: white;
            padding: 12px 30px;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
            transition: background 0.3s;
        }

        .palais-reserve-btn:hover {
            background: #b89651;
        }

        /* Slider */
        .palais-slider-container {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .palais-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .palais-slide.palais-active {
            opacity: 1;
        }

        .palais-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .palais-slide-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            color: white;
            text-align: center;
        }

        .palais-slide-title {
            font-size: 80px;
            font-weight: 300;
            letter-spacing: 8px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .palais-slide-subtitle {
            font-size: 16px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .palais-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 10;
            font-size: 24px;
            transition: background 0.3s;
        }

        .palais-slider-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .palais-slider-arrow-left {
            left: 20px;
        }

        .palais-slider-arrow-right {
            right: 20px;
        }

        /* About Section */
        .palais-about-section {
            background: #0a3d2d;
            padding: 80px 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .palais-about-text {
            color: white;
        }

        .palais-about-title {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 30px;
            color: #c9a961;
        }

        .palais-about-description {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .palais-chef-quote {
            border-left: 3px solid #c9a961;
            padding-left: 20px;
            margin-top: 40px;
        }

        .palais-chef-quote p {
            font-style: italic;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .palais-chef-signature {
            font-family: 'Brush Script MT', cursive;
            font-size: 32px;
            color: #c9a961;
        }

        .palais-about-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .palais-about-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 4px;
        }

        .palais-about-image.palais-large {
            grid-column: span 2;
        }

        /* Menu Section */
        .palais-menu-header {
            text-align: center;
            padding: 80px 20px 60px;
            background: #f9f9f9;
        }

        .palais-menu-subtitle {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #c9a961;
            margin-bottom: 15px;
        }

        .palais-menu-title {
            font-size: 48px;
            font-weight: 300;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .palais-menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 50px 80px;
            background: #f9f9f9;
        }

        .palais-menu-card {
            background: white;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .palais-menu-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .palais-menu-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .palais-menu-content {
            padding: 30px;
        }

        .palais-menu-category {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .palais-menu-description {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }

        .palais-menu-link {
            display: inline-block;
            color: #c9a961;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            border-bottom: 1px solid #c9a961;
            transition: opacity 0.3s;
        }

        .palais-menu-link:hover {
            opacity: 0.7;
        }

        @media (max-width: 1024px) {
            .palais-menu-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .palais-about-section {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .palais-slide-title {
                font-size: 48px;
            }

            .palais-menu-grid {
                grid-template-columns: 1fr;
            }

            .palais-header {
                flex-direction: column;
                gap: 15px;
            }

            .palais-nav ul {
                flex-wrap: wrap;
                gap: 15px;
                justify-content: center;
            }
        }
        

    

        /* Footer Styles */
        .footer {
            background: #0a3d2d;
            color: rgba(255, 255, 255, 0.9);
            padding: 60px 50px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #c9a961;
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            font-size: 32px;
            font-weight: 700;
            color: #c9a961;
            margin-bottom: 15px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .footer-tagline {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .social-icon:hover {
            background: #c9a961;
            transform: translateY(-3px);
        }

        .social-icon svg {
            transition: transform 0.3s ease;
        }

        .social-icon:hover svg {
            transform: scale(1.1);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #c9a961;
            padding-left: 5px;
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-contact i {
            color: #c9a961;
            font-size: 16px;
            margin-top: 2px;
        }

        .footer-hours {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-hours strong {
            color: #c9a961;
            display: block;
            margin-bottom: 8px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-copyright a {
            color: #c9a961;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .footer-copyright a:hover {
            opacity: 0.8;
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #c9a961;
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 30px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-brand {
                max-width: 100%;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 30px 20px 15px;
            }

            .footer-logo {
                font-size: 24px;
            }

            .footer-section h3 {
                font-size: 18px;
            }
        }