| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Galapagos Southern Loop</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; } |
| #render-target { |
| position: relative; |
| width: 1080px; |
| height: 2400px; |
| overflow: hidden; |
| background: #ffffff; |
| } |
| |
| |
| .app-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 140px; |
| background: #1f4c86; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| color: #ffffff; |
| } |
| .app-bar .icon { |
| width: 80px; |
| height: 80px; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| margin-right: 28px; |
| opacity: 0.95; |
| } |
| .app-bar .title-right { |
| margin-left: auto; |
| font-size: 44px; |
| font-weight: 600; |
| letter-spacing: 0.5px; |
| } |
| |
| |
| .hero { |
| position: absolute; |
| top: 140px; |
| left: 0; |
| width: 1080px; |
| height: 2260px; |
| background: #E0E0E0; |
| border-top: 1px solid #BDBDBD; |
| border-bottom: 1px solid #BDBDBD; |
| display: flex; |
| align-items: flex-start; |
| justify-content: center; |
| color: #757575; |
| } |
| .hero .img-label { |
| position: absolute; |
| top: 40px; |
| left: 40px; |
| padding: 10px 16px; |
| background: rgba(255,255,255,0.7); |
| border: 1px dashed #BDBDBD; |
| font-size: 28px; |
| border-radius: 8px; |
| } |
| |
| .hero::after { |
| content: ""; |
| position: absolute; |
| inset: 0; |
| background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.20) 25%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.2) 75%, rgba(0,0,0,0.35) 100%); |
| pointer-events: none; |
| } |
| |
| |
| .content { |
| position: absolute; |
| top: 420px; |
| left: 60px; |
| width: 960px; |
| color: #ffffff; |
| } |
| .eyebrow { |
| font-size: 40px; |
| font-weight: 700; |
| letter-spacing: 2px; |
| text-transform: uppercase; |
| margin-bottom: 24px; |
| } |
| .main-title { |
| font-size: 78px; |
| line-height: 1.15; |
| font-weight: 800; |
| margin-bottom: 24px; |
| } |
| .sub-title { |
| font-size: 40px; |
| letter-spacing: 0.5px; |
| color: #E6F1FF; |
| margin-bottom: 36px; |
| } |
| .link { |
| font-size: 42px; |
| color: #9ad0e4; |
| text-decoration: none; |
| font-weight: 700; |
| margin-bottom: 70px; |
| display: inline-block; |
| } |
| |
| .section-title { |
| font-size: 54px; |
| font-weight: 800; |
| margin-bottom: 28px; |
| color: #ffffff; |
| } |
| |
| |
| .cards { |
| display: flex; |
| gap: 40px; |
| margin-bottom: 38px; |
| } |
| .card-dark { |
| width: 360px; |
| height: 360px; |
| background: #3b5671; |
| border-radius: 10px; |
| padding: 32px; |
| box-shadow: 0 6px 14px rgba(0,0,0,0.35); |
| } |
| .card-dark .year { |
| font-size: 40px; |
| color: #cfe4ff; |
| margin-bottom: 24px; |
| font-weight: 700; |
| } |
| .card-dark .date { |
| font-size: 86px; |
| font-weight: 800; |
| line-height: 1.05; |
| color: #ffffff; |
| } |
| |
| .card-light { |
| width: 360px; |
| height: 260px; |
| background: #ffffff; |
| border-radius: 10px; |
| padding: 30px; |
| box-shadow: 0 6px 14px rgba(0,0,0,0.30); |
| color: #222; |
| } |
| .card-light .year { |
| font-size: 40px; |
| color: #777; |
| font-weight: 700; |
| margin-bottom: 14px; |
| } |
| .card-light .date { |
| font-size: 80px; |
| font-weight: 800; |
| margin-bottom: 12px; |
| } |
| .card-light .price { |
| font-size: 40px; |
| color: #333; |
| font-weight: 700; |
| } |
| |
| .link.secondary { |
| margin-top: 10px; |
| color: #bfe9f3; |
| } |
| |
| .avg-label { |
| margin-top: 36px; |
| font-size: 34px; |
| color: #e8ecf6; |
| letter-spacing: 0.5px; |
| } |
| .prices { |
| display: flex; |
| gap: 40px; |
| align-items: baseline; |
| margin: 12px 0 60px; |
| } |
| .old-price { |
| font-size: 58px; |
| color: #ffffff; |
| position: relative; |
| opacity: 0.95; |
| } |
| .old-price::after { |
| content: ""; |
| position: absolute; |
| left: -6px; |
| right: -6px; |
| top: 50%; |
| height: 6px; |
| background: #d55; |
| transform: rotate(-5deg); |
| } |
| .new-price { |
| font-size: 64px; |
| font-weight: 800; |
| color: #ffffff; |
| } |
| |
| |
| .btn-outline { |
| width: 960px; |
| height: 120px; |
| border: 3px solid rgba(255,255,255,0.85); |
| border-radius: 14px; |
| background: rgba(255,255,255,0.08); |
| color: #ffffff; |
| font-size: 46px; |
| font-weight: 800; |
| letter-spacing: 0.5px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| margin-bottom: 40px; |
| } |
| |
| .btn-primary { |
| width: 960px; |
| height: 140px; |
| background: #d55a3c; |
| border-radius: 16px; |
| color: #ffffff; |
| font-size: 52px; |
| font-weight: 800; |
| letter-spacing: 0.5px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| box-shadow: 0 10px 18px rgba(0,0,0,0.35); |
| } |
| |
| .footnote { |
| position: absolute; |
| bottom: 90px; |
| left: 60px; |
| width: 960px; |
| font-size: 32px; |
| color: #ffffff; |
| opacity: 0.92; |
| text-align: center; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="app-bar"> |
| <div class="icon"> |
| <svg width="48" height="48" viewBox="0 0 24 24" fill="#ffffff"> |
| <path d="M15 6l-6 6 6 6-1.5 1.5L6 12l7.5-7.5L15 6z"></path> |
| </svg> |
| </div> |
| <div class="icon"> |
| <svg width="48" height="48" viewBox="0 0 24 24" fill="#ffffff"> |
| <path d="M9 6l6 6-6 6 1.5 1.5L18 12 10.5 4.5 9 6z"></path> |
| </svg> |
| </div> |
| <div class="title-right">Close</div> |
| </div> |
|
|
| |
| <div class="hero"> |
| <div class="img-label">[IMG: Beach shoreline with sea lion - Galapagos]</div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="eyebrow">7 NIGHTS</div> |
| <div class="main-title">Galapagos Southern Loop</div> |
| <div class="sub-title">ONBOARD CELEBRITY XPEDITION</div> |
| <a href="#" class="link">VIEW PORTS +</a> |
|
|
| <div class="section-title">2 SAILINGS</div> |
|
|
| <div class="cards"> |
| <div class="card-dark"> |
| <div class="year">2024</div> |
| <div class="date">APR 06</div> |
| </div> |
| <div class="card-light"> |
| <div class="year">2024</div> |
| <div class="date">APR 20</div> |
| <div class="price">$9,299 USD</div> |
| </div> |
| </div> |
|
|
| <a href="#" class="link secondary">VIEW CATEGORIES +</a> |
|
|
| <div class="avg-label">AVG. PER PERSON</div> |
| <div class="prices"> |
| <div class="old-price">$11,624 USD*</div> |
| <div class="new-price">$9,299 USD*</div> |
| </div> |
|
|
| <div class="btn-outline">VIEW ITINERARY</div> |
| <div class="btn-primary">BOOK NOW</div> |
| </div> |
|
|
| <div class="footnote">†Taxes, fees and port expenses $120.00 USD*</div> |
| </div> |
| </body> |
| </html> |