| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Sydenham 72 Durham Street - Bayleys</title> |
| <style> |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| |
| :root { |
| --primary-blue: #0a2a52; |
| --primary-red: #d62828; |
| --white: #ffffff; |
| --gray: #666666; |
| } |
| |
| body { |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; |
| line-height: 1.6; |
| color: #333; |
| } |
| |
| |
| .header { |
| background-color: var(--primary-blue); |
| color: var(--white); |
| padding: 15px 0; |
| } |
| |
| .header-container { |
| max-width: 1200px; |
| margin: 0 auto; |
| padding: 0 20px; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| } |
| |
| .logo { |
| display: flex; |
| align-items: center; |
| } |
| |
| .logo img { |
| height: 35px; |
| margin-right: 15px; |
| } |
| |
| .nav-menu { |
| display: flex; |
| gap: 20px; |
| } |
| |
| .nav-item { |
| color: var(--white); |
| text-decoration: none; |
| font-size: 14px; |
| } |
| |
| .nav-item:hover { |
| opacity: 0.8; |
| } |
| |
| .hamburger { |
| display: none; |
| background: none; |
| border: none; |
| color: var(--white); |
| font-size: 24px; |
| cursor: pointer; |
| } |
| |
| |
| .breadcrumb { |
| background: var(--white); |
| padding: 15px 20px; |
| font-size: 12px; |
| color: var(--primary-blue); |
| } |
| |
| .property-info { |
| max-width: 1200px; |
| margin: 0 auto; |
| padding: 20px; |
| } |
| |
| .property-title { |
| font-size: 36px; |
| color: var(--primary-blue); |
| margin-bottom: 10px; |
| } |
| |
| .property-address { |
| font-size: 28px; |
| color: #444; |
| margin-bottom: 20px; |
| } |
| |
| .property-meta { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| color: var(--gray); |
| font-size: 14px; |
| } |
| |
| .watchlist-share { |
| display: flex; |
| gap: 15px; |
| } |
| |
| |
| .property-images { |
| max-width: 1200px; |
| margin: 0 auto; |
| padding: 0 20px; |
| } |
| |
| .main-image-container { |
| position: relative; |
| margin-bottom: 20px; |
| } |
| |
| .main-image { |
| width: 100%; |
| height: auto; |
| display: block; |
| } |
| |
| .leased-badge { |
| position: absolute; |
| top: 10px; |
| left: 10px; |
| background: var(--primary-red); |
| color: var(--white); |
| padding: 10px 20px; |
| font-weight: bold; |
| text-transform: uppercase; |
| z-index: 10; |
| } |
| |
| .thumbnail-container { |
| display: flex; |
| gap: 15px; |
| } |
| |
| .thumbnail { |
| width: 280px; |
| height: 200px; |
| object-fit: cover; |
| } |
| |
| .thumbnail-count { |
| position: absolute; |
| top: 50%; |
| left: 50%; |
| transform: translate(-50%, -50%); |
| font-size: 48px; |
| color: var(--white); |
| font-weight: bold; |
| z-index: 5; |
| } |
| |
| .floor-area { |
| max-width: 1200px; |
| margin: 0 auto; |
| padding: 20px; |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| font-size: 24px; |
| color: var(--primary-blue); |
| } |
| |
| |
| .property-details { |
| background: var(--primary-blue); |
| color: var(--white); |
| padding: 40px 20px; |
| } |
| |
| .details-container { |
| max-width: 1200px; |
| margin: 0 auto; |
| display: grid; |
| grid-template-columns: 2fr 1fr; |
| gap: 40px; |
| } |
| |
| .profile-title { |
| font-size: 32px; |
| margin-bottom: 20px; |
| } |
| |
| .profile-text { |
| margin-bottom: 30px; |
| line-height: 1.8; |
| } |
| |
| .approx-details { |
| margin-bottom: 30px; |
| } |
| |
| .approx-item { |
| margin-bottom: 8px; |
| } |
| |
| .lease-info { |
| background: var(--white); |
| color: var(--primary-blue); |
| padding: 20px; |
| margin-bottom: 30px; |
| } |
| |
| .agent-card { |
| background: var(--white); |
| padding: 25px; |
| border-radius: 5px; |
| } |
| |
| .agent-photo { |
| width: 100px; |
| height: 100px; |
| border-radius: 50%; |
| object-fit: cover; |
| margin-bottom: 15px; |
| } |
| |
| .agent-name { |
| font-size: 20px; |
| color: var(--primary-blue); |
| margin-bottom: 10px; |
| } |
| |
| .agent-contact { |
| font-size: 14px; |
| margin-bottom: 15px; |
| } |
| |
| .agent-buttons { |
| display: flex; |
| gap: 15px; |
| } |
| |
| .btn { |
| padding: 12px 25px; |
| border: 2px solid var(--primary-blue); |
| background: var(--white); |
| color: var(--primary-blue); |
| text-decoration: none; |
| font-weight: bold; |
| cursor: pointer; |
| } |
| |
| .btn-primary { |
| background: var(--primary-blue); |
| color: var(--white); |
| border: none; |
| } |
| |
| |
| .features-section { |
| max-width: 1200px; |
| margin: 0 auto; |
| padding: 40px 20px; |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 40px; |
| } |
| |
| .features-title { |
| font-size: 36px; |
| color: var(--primary-blue); |
| margin-bottom: 30px; |
| } |
| |
| .feature-item { |
| margin-bottom: 25px; |
| } |
| |
| .feature-label { |
| font-size: 18px; |
| color: var(--primary-blue); |
| font-weight: bold; |
| margin-bottom: 5px; |
| } |
| |
| .feature-value { |
| font-size: 16px; |
| color: #666; |
| } |
| |
| .map-container { |
| width: 100%; |
| height: 400px; |
| border: 1px solid #ddd; |
| } |
| |
| .map-container img { |
| width: 100%; |
| height: 100%; |
| object-fit: cover; |
| } |
| |
| |
| .footer { |
| background: var(--primary-blue); |
| color: var(--white); |
| padding: 50px 20px; |
| } |
| |
| .footer-container { |
| max-width: 1200px; |
| margin: 0 auto; |
| display: grid; |
| grid-template-columns: 1fr 1fr 1fr; |
| gap: 40px; |
| } |
| |
| .footer-logo { |
| margin-bottom: 20px; |
| } |
| |
| .footer-logo img { |
| height: 40px; |
| margin-right: 15px; |
| } |
| |
| .social-icons { |
| display: flex; |
| gap: 15px; |
| margin-bottom: 30px; |
| } |
| |
| .social-icon { |
| width: 30px; |
| height: 30px; |
| } |
| |
| .footer-column h3 { |
| font-size: 20px; |
| margin-bottom: 20px; |
| border-bottom: 2px solid var(--white); |
| padding-bottom: 10px; |
| } |
| |
| .footer-column a { |
| color: var(--white); |
| text-decoration: none; |
| display: block; |
| margin-bottom: 10px; |
| font-size: 14px; |
| } |
| |
| .footer-column a:hover { |
| opacity: 0.8; |
| } |
| |
| .footer-bottom { |
| max-width: 1200px; |
| margin: 30px auto 0; |
| padding-top: 20px; |
| border-top: 1px solid rgba(255,255,255,0.2); |
| text-align: center; |
| font-size: 12px; |
| } |
| |
| |
| @media (max-width: 1024px) { |
| .nav-menu { |
| display: none; |
| } |
| |
| .hamburger { |
| display: block; |
| } |
| |
| .property-title { |
| font-size: 32px; |
| } |
| |
| .property-address { |
| font-size: 24px; |
| } |
| |
| .details-container { |
| grid-template-columns: 1fr; |
| } |
| |
| .features-section { |
| grid-template-columns: 1fr; |
| } |
| |
| .footer-container { |
| grid-template-columns: 1fr 1fr; |
| } |
| } |
| |
| @media (max-width: 768px) { |
| .header-container { |
| padding: 0 15px; |
| } |
| |
| .property-title { |
| font-size: 28px; |
| } |
| |
| .property-address { |
| font-size: 20px; |
| } |
| |
| .thumbnail-container { |
| flex-direction: column; |
| } |
| |
| .thumbnail { |
| width: 100%; |
| height: 150px; |
| } |
| |
| .agent-buttons { |
| flex-direction: column; |
| } |
| |
| .footer-container { |
| grid-template-columns: 1fr; |
| } |
| |
| .social-icons { |
| justify-content: center; |
| } |
| } |
| |
| @media (max-width: 480px) { |
| .property-title { |
| font-size: 24px; |
| } |
| |
| .property-address { |
| font-size: 18px; |
| } |
| |
| .watchlist-share { |
| justify-content: center; |
| margin-top: 15px; |
| } |
| |
| .floor-area { |
| font-size: 18px; |
| } |
| |
| .profile-title { |
| font-size: 28px; |
| } |
| |
| .lease-info, .agent-card { |
| padding: 15px; |
| } |
| |
| .agent-photo { |
| width: 80px; |
| height: 80px; |
| } |
| |
| .features-title { |
| font-size: 32px; |
| } |
| |
| .map-container { |
| height: 300px; |
| } |
| } |
| </style> |
| </head> |
| <body> |
| |
| <header class="header"> |
| <div class="header-container"> |
| <div class="logo"> |
| <img src="images/ATB-Logo.svg" alt="Bayleys Logo"> |
| <span style="font-size: 18px; font-weight: bold;">BAYLEYS</span> |
| </div> |
| <nav class="nav-menu"> |
| <a href="#" class="nav-item">Residential</a> |
| <a href="#" class="nav-item">Commercial</a> |
| <a href="#" class="nav-item">Rural</a> |
| <a href="#" class="nav-item">Property Services</a> |
| <a href="#" class="nav-item">News and Editorial</a> |
| <a href="#" class="nav-item">Auctions</a> |
| <a href="#" class="nav-item">Our Network</a> |
| <a href="#" class="nav-item">My Bayleys</a> |
| </nav> |
| <button class="hamburger">☰</button> |
| </div> |
| </header> |
|
|
| |
| <div class="breadcrumb"> |
| <span>COMMERCIAL | CANTERBURY | CHRISTCHURCH</span> |
| <span style="float: right;">#559842</span> |
| </div> |
|
|
| |
| <div class="property-info"> |
| <h1 class="property-title">Sydenham</h1> |
| <h2 class="property-address">72 Durham Street</h2> |
| <div class="watchlist-share"> |
| <span>Watchlist</span> |
| <span>Share</span> |
| </div> |
| </div> |
|
|
| |
| <div class="property-images"> |
| <div class="main-image-container"> |
| <img class="leased-badge" src="images/leased.svg" alt="LEASED"> |
| <img class="main-image" src="images/559842_1.jpg" alt="Property Main Image"> |
| </div> |
| <div class="thumbnail-container"> |
| <img class="thumbnail" src="images/559842_2.jpg" alt="Property Thumbnail 1"> |
| <img class="thumbnail" src="images/559842_3.jpg" alt="Property Thumbnail 2"> |
| <span class="thumbnail-count">+3</span> |
| </div> |
| <div class="floor-area"> |
| <span>129</span> |
| <span>sqm</span> |
| <span>📐</span> |
| </div> |
| </div> |
|
|
| |
| <section class="property-details"> |
| <div class="details-container"> |
| <div class="details-left"> |
| <h2 class="profile-title">Corner profile - Sydenham</h2> |
| <p class="profile-text"> |
| This warehouse and office premises provides a great location for the small business. Close to the central business district and main arterial routes of Christchurch. Premises and billboard in one with great profile and signage opportunities. |
| </p> |
| <div class="approx-details"> |
| <p><strong>Approx</strong></p> |
| <p class="approx-item">- 79.10sqm of warehouse</p> |
| <p class="approx-item">- 49.50sqm of office</p> |
| <p class="approx-item">- Two to four car parks</p> |
| <p class="approx-item">- 128.60sqm total</p> |
| <p style="margin-top: 15px;"><strong>Available Now!!</strong></p> |
| <p style="margin-top: 10px;">Rent per annum - $18,500 + OPEX + GST</p> |
| </div> |
| </div> |
| <div class="details-right"> |
| <div class="lease-info"> |
| <strong>For Lease NZ$18,500 + GST (if any)</strong> |
| </div> |
| <div class="agent-card"> |
| <img class="agent-photo" src="images/BENAND_profile.jpg" alt="Agent Photo"> |
| <h3 class="agent-name">Benji Andrews</h3> |
| <p class="agent-contact">Christchurch</p> |
| <p class="agent-contact">+64 27 676 6707</p> |
| <p class="agent-contact">benji.andrews@bayleys.co.nz</p> |
| <p class="agent-contact">WHALAN AND PARTNERS LTD, BAYLEYS,<br>LICENCED UNDER THE REA ACT 2008</p> |
| <div class="agent-buttons"> |
| <a class="btn" href="#">View profile</a> |
| <a class="btn btn-primary" href="#">Contact</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="features-section"> |
| <div class="features-left"> |
| <h2 class="features-title">Features</h2> |
| <div class="feature-item"> |
| <div class="feature-label">Car parks</div> |
| <div class="feature-value">4</div> |
| </div> |
| <div class="feature-item"> |
| <div class="feature-label">Office</div> |
| <div class="feature-value">49.50 Sqm</div> |
| </div> |
| <div class="feature-item"> |
| <div class="feature-label">Warehouse</div> |
| <div class="feature-value">79.10 sqm</div> |
| </div> |
| </div> |
| <div class="features-right"> |
| <div class="map-container"> |
| <img src="images/map.jpg" alt="Property Map"> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="footer"> |
| <div class="footer-container"> |
| <div class="footer-logo"> |
| <img src="images/ATB-Logo.svg" alt="Bayleys Logo"> |
| <div class="social-icons"> |
| <img src="images/facebook.svg" class="social-icon" alt="Facebook"> |
| <img src="images/5-4-instagram-icon.svg" class="social-icon" alt="Instagram"> |
| <img src="images/5-5-LinkedIn-icon.svg" class="social-icon" alt="LinkedIn"> |
| <img src="images/5-6-YouTube.svg" class="social-icon" alt="YouTube"> |
| </div> |
| </div> |
| <div class="footer-column"> |
| <h3>About Bayleys</h3> |
| <a href="#">About Bayleys</a> |
| <a href="#">Being Altogether Better</a> |
| <a href="#">Bayleys Foundation</a> |
| <a href="#">Join us</a> |
| <a href="#">Contact us</a> |
| </div> |
| <div class="footer-column"> |
| <h3>Information</h3> |
| <a href="#">Complaints procedure</a> |
| <a href="#">Policy and privacy</a> |
| <a href="#">Real Estate Agents Act 2008</a> |
| <a href="#">ESG</a> |
| <a href="#">AML</a> |
| </div> |
| <div class="footer-column"> |
| <h3>Tools and resources</h3> |
| <a href="#">Insights, data and consulting</a> |
| <a href="#">News and editorial</a> |
| <a href="#">Bayleys magazine suite</a> |
| <a href="#">Live Auctions</a> |
| <a href="#">Get finance pre-approved</a> |
| </div> |
| </div> |
| <div class="footer-bottom"> |
| <p>© Bayleys Realty Group. Licensed (REAA 2008)</p> |
| </div> |
| </footer> |
| </body> |
| </html> |