@charset "UTF-8";


  .food-container { /* Renamed conceptually for assets if you prefer, but food-container is fine */
            background-color: #f8f8f8;
            padding: 60px 0;
        }

        .food-card { /* Can be renamed to asset-card */
            width: 100%;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            background: #fff;
            color: #333;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .food-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .food-card .food-image {
            position: relative;
            overflow: hidden;
            border-radius: 0 0 0 45px;
        }

        .food-card .food-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 0 0 0 45px;
        }

        .food-card .food-info {
            padding: 25px;
            position: relative;
            z-index: 1;
        }

        .food-card .food-info h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #222;
        }

        .food-card .food-info .description {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .food-card .food-info .price { /* This might not be relevant for assets, consider removing or re-purposing */
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff9900;
            margin-bottom: 20px;
        }

        .food-card .food-info .order-btn { /* Renamed to explore-btn or similar */
            padding: 12px 25px;
            background-color: #00bcd4;
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .food-card .food-info .order-btn:hover {
            background-color: #009cb3;
            transform: translateY(-2px);
        }

        .btn-hero {
            display: inline-block;
            margin-top: 30px;
            padding: 15px 40px;
            background: linear-gradient(90deg, #00bcd4, #2196f3);
            color: white;
            font-size: 1.25rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(0, 188, 212, 0.6);
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .btn-hero:hover {
            background: linear-gradient(90deg, #2196f3, #00bcd4);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 30px rgba(33, 150, 243, 0.8);
        }