| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Martino'z Pizza - Menu</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width: 1080px; height: 2400px; |
| position: relative; overflow: hidden; |
| background: #ffffff; |
| } |
| .status-bar { |
| height: 90px; |
| padding: 24px 32px 0 32px; |
| color: #5f5f5f; font-size: 32px; |
| } |
| .header { |
| display: flex; align-items: center; |
| padding: 16px 48px 0 48px; |
| } |
| .brand-logo { |
| width: 120px; height: 120px; border-radius: 60px; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; |
| color: #757575; font-size: 26px; margin-right: 28px; |
| } |
| .brand-title { |
| flex: 1; |
| } |
| .brand-title .main { |
| font-weight: 800; font-size: 56px; letter-spacing: 1px; color: #2e2e2e; |
| } |
| .brand-title .sub { |
| font-size: 26px; color: #2e2e2e; letter-spacing: 6px; |
| } |
| .brand-title .divider { |
| display: inline-block; width: 120px; height: 2px; background: #8c8c8c; margin: 0 12px; |
| } |
| .location-row { |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 12px 48px 0 48px; |
| } |
| .location-left { display: flex; align-items: flex-start; } |
| .store-icon { width: 48px; height: 48px; margin-right: 20px; } |
| .location-text .city { color: #8a8a8a; font-size: 32px; } |
| .location-text .branch { font-size: 40px; font-weight: 700; color: #222; display: inline-flex; align-items: center; } |
| .dropdown { |
| width: 28px; height: 28px; margin-left: 12px; |
| } |
| .call-btn { |
| border: 2px solid #2f6a39; color: #2f6a39; background: #f6fff7; |
| padding: 20px 32px; border-radius: 16px; font-size: 36px; font-weight: 700; |
| display: inline-flex; align-items: center; gap: 16px; |
| box-shadow: 0 4px 0 #2f6a39; |
| } |
| .call-btn svg { width: 40px; height: 40px; } |
| .tabs { |
| display: flex; gap: 20px; padding: 24px 48px; |
| } |
| .tab { |
| flex: 1; text-align: center; padding: 28px 0; border-radius: 16px; |
| font-size: 38px; font-weight: 800; |
| } |
| .tab.active { background: #3E6E3B; color: #fff; } |
| .tab.inactive { background: #eaeaea; color: #8d8d8d; } |
| .banner { |
| margin: 8px 48px 24px 48px; border-radius: 24px; overflow: hidden; |
| height: 300px; |
| } |
| .banner .img { |
| width: 100%; height: 100%; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; |
| color: #757575; font-size: 36px; |
| } |
| .menu-header { |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 12px 48px 20px 48px; |
| } |
| .menu-title { |
| font-size: 54px; font-weight: 800; color: #333; |
| } |
| .search-pill { |
| display: inline-flex; align-items: center; gap: 12px; |
| background: #efefef; color: #5b5b5b; border-radius: 18px; |
| padding: 16px 24px; font-size: 36px; font-weight: 700; |
| } |
| .search-pill svg { width: 44px; height: 44px; } |
| .cards { |
| display: grid; grid-template-columns: 1fr 1fr; gap: 28px; |
| padding: 0 48px 180px 48px; |
| } |
| .card { |
| position: relative; height: 480px; border-radius: 24px; overflow: hidden; |
| } |
| .card .img { |
| width: 100%; height: 100%; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; color: #757575; font-size: 34px; |
| } |
| .card .label { |
| position: absolute; left: 24px; bottom: 24px; color: #fff; |
| text-shadow: 0 2px 2px rgba(0,0,0,0.4); |
| } |
| .card .label .title { font-size: 52px; font-weight: 900; letter-spacing: 1px; } |
| .card .label .subtitle { font-size: 30px; font-weight: 700; } |
| |
| .bottom-bar { |
| position: absolute; left: 24px; right: 24px; bottom: 110px; |
| height: 160px; background: #ffffff; border-radius: 36px; |
| box-shadow: 0 8px 24px rgba(0,0,0,0.12); |
| display: flex; align-items: center; justify-content: space-around; |
| padding: 0 16px; |
| } |
| .nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; } |
| .nav-item .icon { width: 56px; height: 56px; } |
| .nav-item .label { font-size: 30px; color: #6d6d6d; font-weight: 700; } |
| .nav-item.active .label { color: #3E6E3B; } |
| .nav-item.active svg path { fill: #3E6E3B; } |
| .home-handle { |
| position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); |
| width: 340px; height: 16px; background: #000; opacity: 0.15; border-radius: 12px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| <div class="status-bar"> |
| 2:02 • • • |
| </div> |
|
|
| <div class="header"> |
| <div class="brand-logo">[IMG: Pizza Logo]</div> |
| <div class="brand-title"> |
| <div class="main">MARTINO’Z</div> |
| <div class="sub"><span class="divider"></span>PIZZA<span class="divider"></span></div> |
| </div> |
| </div> |
|
|
| <div class="location-row"> |
| <div class="location-left"> |
| <svg class="store-icon" viewBox="0 0 24 24"> |
| <path d="M3 9l2-3h14l2 3v1h-2v9H5v-9H3V9zm4 2h10v7H7v-7zm1-5l-1.5 2h11L16 6H8z" fill="#333"/> |
| </svg> |
| <div class="location-text"> |
| <div class="city">Indore</div> |
| <div class="branch">Indore (Bhawarkua) |
| <svg class="dropdown" viewBox="0 0 24 24"> |
| <path d="M7 10l5 5 5-5" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="call-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M6 2l4 2-2 3c1 2 3 4 5 5l3-2 2 4-3 2c-6-2-11-7-13-13L6 2z" fill="#2f6a39"/> |
| </svg> |
| CALL OUTLET |
| </div> |
| </div> |
|
|
| <div class="tabs"> |
| <div class="tab active">DELIVERY</div> |
| <div class="tab inactive">PICK UP</div> |
| <div class="tab inactive">DINE-IN</div> |
| </div> |
|
|
| <div class="banner"> |
| <div class="img">[IMG: Food Banner - "Look On The Bright Side"]</div> |
| </div> |
|
|
| <div class="menu-header"> |
| <div class="menu-title">MENU</div> |
| <div class="search-pill"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="6" stroke="#666" stroke-width="2" fill="none"/> |
| <path d="M14.5 14.5L20 20" stroke="#666" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| Search |
| </div> |
| </div> |
|
|
| <div class="cards"> |
| <div class="card"> |
| <div class="img">[IMG: Two Pizzas Top View]</div> |
| <div class="label"> |
| <div class="title">BOGO</div> |
| <div class="subtitle">29 Varieties Available</div> |
| </div> |
| </div> |
| <div class="card"> |
| <div class="img">[IMG: Cheese Pizza]</div> |
| <div class="label"> |
| <div class="title">PIZZA</div> |
| <div class="subtitle">38 Varieties Available</div> |
| </div> |
| </div> |
| <div class="card"> |
| <div class="img">[IMG: Garlic Breads]</div> |
| <div class="label"> |
| <div class="title">GARLIC BREADS</div> |
| <div class="subtitle">11 Varieties Available</div> |
| </div> |
| </div> |
| <div class="card"> |
| <div class="img">[IMG: Bruschetta]</div> |
| <div class="label"> |
| <div class="title">BRUSCHETTA</div> |
| <div class="subtitle">9 Varieties Available</div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="bottom-bar"> |
| <div class="nav-item active"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M12 3l9 8h-3v8H6v-8H3l9-8z" fill="#9e9e9e"/> |
| </svg> |
| <div class="label">Home</div> |
| </div> |
| <div class="nav-item"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M12 8a4 4 0 110 8 4 4 0 010-8zm0-6l2 3-2 1-2-1 2-3zm9 9l-3 2 1 2 3-2-1-2zM3 11l1 2-3 2 1-3 1-1z" fill="#9e9e9e"/> |
| </svg> |
| <div class="label">Offers</div> |
| </div> |
| <div class="nav-item"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M6 7h12l-2 12H8L6 7zm3-3h6v3H9V4z" fill="#9e9e9e"/> |
| </svg> |
| <div class="label">Cart</div> |
| </div> |
| <div class="nav-item"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M12 12a5 5 0 100-10 5 5 0 000 10zm0 2c-5 0-9 3-9 6v2h18v-2c0-3-4-6-9-6z" fill="#9e9e9e"/> |
| </svg> |
| <div class="label">Account</div> |
| </div> |
| </div> |
|
|
| <div class="home-handle"></div> |
|
|
| </div> |
| </body> |
| </html> |