        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #ffffff;
        }

        /* Navigation Bar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: white;
            border-left: 5px solid #4a90e2;
            position: relative;
            z-index: 999;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 32px;
            vertical-align: middle;
            margin-right: 8px;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: black;
            font-weight: bold;
            font-size: 14px;
        }

        .shop-btn {
            background-color: black;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
        }

        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 40px 20px;
            background-color: white;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 14px;
            color: #666;
            max-width: 600px;
            margin: 0 auto 20px;
        }

        .hero-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 10px;
        }

        /* Content Section (HOW DO YOU LIKE OUR BREAKFAST+ Grid) */
        .content {
            padding: 40px 20px;
            background-color: white;
        }

        .content h2 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 5px;
        }

        .grid-item {
            cursor: pointer;
        }

        .grid-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid #000000;
            transition: border-color 0.3s ease;
        }

        .grid-item img:hover {
            border-color: #ff6200;
        }

        /* Menu Section */
        .menu-section {
            padding: 40px 20px;
            background-color: #f8f8f8;
            text-align: center;
        }

        .menu-heading {
            font-size: 36px;
            font-weight: 900;
            margin-bottom: 20px;
            color: #333;
        }

        .menu-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .search-bar, .category-filter {
            padding: 10px 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        .search-bar:focus, .category-filter:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
        }

        .menu-grid, .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-item, .blog-item {
            background-color: white;
            border-radius: 10px;
            border: 2px solid #333;
            box-shadow: none;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s ease-in-out;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .menu-item:hover, .blog-item:hover {
            transform: translateY(-3px);
        }

        .menu-item img, .blog-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            background-color: #f5f5f5;
        }

        .menu-item-label, .blog-item-title {
            font-size: 14px;
            color: #333;
            text-align: center;
            padding: 10px;
            margin: 0;
            font-weight: bold;
            line-height: 1.4;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* Blog Section */
        .blog-section {
            padding: 40px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .blog-heading {
            font-size: 36px;
            font-weight: 900;
            margin-bottom: 30px;
            color: #333;
        }

        .blog-item-excerpt {
            font-size: 12px;
            color: #555;
            text-align: center;
            padding: 0 10px 10px;
            margin: 0;
            line-height: 1.5;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        /* Shared Modal for all sections */
        .product-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.6);
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .product-modal.show-modal {
            display: flex;
        }

        .modal-content {
            background-color: #fefefe;
            margin: auto;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            position: relative;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            animation: fadeInScale 0.3s ease-out;
            text-align: center;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .close-button {
            color: #aaa;
            position: absolute;
            top: 15px;
            right: 25px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close-button:hover,
        .close-button:focus {
            color: black;
            text-decoration: none;
        }

        .modal-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .modal-name {
            font-size: 26px;
            font-weight: 900;
            color: #333;
            margin-bottom: 15px;
        }

        .modal-description {
            font-size: 16px;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.6;
            text-align: center;
        }

        .modal-price {
            font-size: 28px;
            font-weight: bold;
            color: #000;
            margin-bottom: 30px;
        }

        .book-button {
            background-color: black;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 20px;
            cursor: pointer;
            margin-top: 20px;
            transition: background-color 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .book-button:hover {
            background-color: #333;
        }

        /* Other Sections */
        .cta {
            text-align: center;
            padding: 20px;
            background-color: white;
        }

        .cta p {
            font-size: 16px;
            font-weight: bold;
        }

        .pride {
            font-weight: 900;
            font-size: 28px;
            margin-top: 20px;
            margin-bottom: 10px;
            color: #000000;
            text-align: center;
            margin-bottom: 30px;
        }

        .image-text-section {
            max-width: 800px;
            margin: 0 auto;
            background-color: #ffffff;
            text-align: center;
            padding: 40px 20px;
        }

        .banner-image {
            width: 90%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .text-columns {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .column {
            padding: 10px;
        }

        .column p {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: white;
                padding: 20px;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .hamburger {
                display: block;
            }

            .shop-btn {
                margin-top: 10px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 12px;
            }

            .content h2 {
                font-size: 20px;
            }

            .grid-item img {
                height: 150px;
            }

            .menu-heading, .blog-heading {
                font-size: 28px;
            }

            .menu-controls {
                flex-direction: column;
                gap: 15px;
            }

            .menu-grid, .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .menu-item img, .blog-item img {
                height: 200px;
            }

            .menu-item-label, .blog-item-title {
                font-size: 12px;
            }

            .blog-item-excerpt {
                font-size: 10px;
                -webkit-line-clamp: 2;
            }

            .modal-content {
                padding: 20px;
                width: 95%;
            }

            .modal-name {
                font-size: 22px;
            }

            .modal-description {
                font-size: 14px;
            }

            .modal-price {
                font-size: 24px;
            }

            .book-button {
                font-size: 18px;
                padding: 12px 25px;
            }

            .image-text-section {
                padding: 20px;
            }

            .column p {
                font-size: 14px;
            }
        }

        /* Tablet and Desktop */
        @media (min-width: 769px) {
            .menu-grid, .blog-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }