1358 lines
47 KiB
HTML
1358 lines
47 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Luxury Yacht Charters - HarborSmith</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700;900&display=swap" rel="stylesheet">
|
|
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script>
|
|
<link rel="stylesheet" href="css/voyage-layout.css">
|
|
<link rel="stylesheet" href="css/themes.css">
|
|
<style>
|
|
/* Premium Charter Page Styles */
|
|
.charter-hero {
|
|
position: relative;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.charter-hero-video {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
z-index: -2;
|
|
}
|
|
|
|
.charter-hero-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
|
|
z-index: -1;
|
|
}
|
|
|
|
.charter-hero-content {
|
|
text-align: center;
|
|
color: white;
|
|
z-index: 1;
|
|
max-width: 1000px;
|
|
padding: 0 2rem;
|
|
animation: fadeInUp 1s ease-out;
|
|
}
|
|
|
|
.charter-hero h1 {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: clamp(3rem, 7vw, 5.5rem);
|
|
font-weight: 900;
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.charter-hero .luxury-accent {
|
|
background: linear-gradient(135deg, #FFD700, #FFA500);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.charter-hero p {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 3rem;
|
|
opacity: 0.95;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.hero-cta-group {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.btn-hero-primary {
|
|
background: linear-gradient(135deg, #1e3a5f, #2563eb);
|
|
color: white;
|
|
padding: 1rem 3rem;
|
|
border-radius: 50px;
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
|
|
}
|
|
|
|
.btn-hero-primary:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
|
|
}
|
|
|
|
.btn-hero-secondary {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
backdrop-filter: blur(10px);
|
|
color: white;
|
|
padding: 1rem 3rem;
|
|
border-radius: 50px;
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
border: 2px solid rgba(255, 255, 255, 0.3);
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.btn-hero-secondary:hover {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
.scroll-indicator {
|
|
position: absolute;
|
|
bottom: 3rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
color: white;
|
|
animation: bounce 2s infinite;
|
|
}
|
|
|
|
/* Fleet Section */
|
|
.fleet-section {
|
|
padding: 6rem 0;
|
|
background: var(--bg-primary);
|
|
}
|
|
|
|
.fleet-header {
|
|
text-align: center;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.fleet-header h2 {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 3.5rem;
|
|
font-weight: 900;
|
|
color: var(--text-primary);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.fleet-header p {
|
|
font-size: 1.25rem;
|
|
color: var(--text-secondary);
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.yacht-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
|
|
gap: 3rem;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.yacht-card {
|
|
background: var(--card-bg);
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
|
|
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
position: relative;
|
|
}
|
|
|
|
.yacht-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.yacht-image-container {
|
|
position: relative;
|
|
height: 280px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.yacht-image {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.6s ease;
|
|
}
|
|
|
|
.yacht-card:hover .yacht-image {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.yacht-badge {
|
|
position: absolute;
|
|
top: 1.5rem;
|
|
left: 1.5rem;
|
|
background: linear-gradient(135deg, #FFD700, #FFA500);
|
|
color: #1e3a5f;
|
|
padding: 0.5rem 1.25rem;
|
|
border-radius: 30px;
|
|
font-weight: 700;
|
|
font-size: 0.875rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
|
|
}
|
|
|
|
.view-360 {
|
|
position: absolute;
|
|
top: 1.5rem;
|
|
right: 1.5rem;
|
|
width: 50px;
|
|
height: 50px;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
backdrop-filter: blur(10px);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
border: 2px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.view-360:hover {
|
|
background: rgba(255, 255, 255, 0.3);
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.yacht-overlay {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
|
|
padding: 2rem 1.5rem 1.5rem;
|
|
color: white;
|
|
}
|
|
|
|
.yacht-rating {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.star {
|
|
color: #FFD700;
|
|
fill: #FFD700;
|
|
}
|
|
|
|
.yacht-location {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
font-size: 0.9rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.yacht-details {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.yacht-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: start;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.yacht-name {
|
|
font-size: 1.75rem;
|
|
font-weight: 800;
|
|
color: var(--text-primary);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.yacht-specs {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
color: var(--text-secondary);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.yacht-spec {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
}
|
|
|
|
.yacht-price {
|
|
text-align: right;
|
|
}
|
|
|
|
.yacht-price-amount {
|
|
font-size: 2rem;
|
|
font-weight: 800;
|
|
color: #2563eb;
|
|
}
|
|
|
|
.yacht-price-period {
|
|
font-size: 0.9rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.yacht-features {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.75rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.feature-tag {
|
|
background: rgba(37, 99, 235, 0.1);
|
|
color: #2563eb;
|
|
padding: 0.4rem 1rem;
|
|
border-radius: 20px;
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.yacht-actions {
|
|
display: flex;
|
|
gap: 1rem;
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.yacht-card:hover .yacht-actions {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.btn-book-yacht {
|
|
flex: 1;
|
|
background: linear-gradient(135deg, #2563eb, #1e3a5f);
|
|
color: white;
|
|
padding: 0.875rem;
|
|
border-radius: 12px;
|
|
border: none;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-book-yacht:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
|
|
}
|
|
|
|
.btn-call {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 12px;
|
|
border: 2px solid var(--border-color);
|
|
background: var(--card-bg);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-call:hover {
|
|
background: #2563eb;
|
|
color: white;
|
|
border-color: #2563eb;
|
|
}
|
|
|
|
/* Pricing Section */
|
|
.pricing-section {
|
|
padding: 6rem 0;
|
|
background: linear-gradient(135deg, #f8fafc, #e2e8f0);
|
|
}
|
|
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 3rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.pricing-card {
|
|
background: white;
|
|
border-radius: 20px;
|
|
padding: 3rem 2rem;
|
|
position: relative;
|
|
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.pricing-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.12);
|
|
}
|
|
|
|
.pricing-card.featured {
|
|
background: linear-gradient(135deg, #1e3a5f, #2563eb);
|
|
color: white;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.pricing-card.featured::before {
|
|
content: 'MOST POPULAR';
|
|
position: absolute;
|
|
top: -15px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: linear-gradient(135deg, #FFD700, #FFA500);
|
|
color: #1e3a5f;
|
|
padding: 0.5rem 2rem;
|
|
border-radius: 30px;
|
|
font-weight: 700;
|
|
font-size: 0.875rem;
|
|
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
|
|
}
|
|
|
|
.pricing-name {
|
|
font-size: 1.75rem;
|
|
font-weight: 800;
|
|
margin-bottom: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.pricing-price {
|
|
font-size: 3rem;
|
|
font-weight: 900;
|
|
text-align: center;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.pricing-card.featured .pricing-price {
|
|
color: #FFD700;
|
|
}
|
|
|
|
.pricing-duration {
|
|
text-align: center;
|
|
opacity: 0.8;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.pricing-features {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.pricing-features li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
padding: 0.75rem 0;
|
|
border-bottom: 1px solid rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.pricing-card.featured .pricing-features li {
|
|
border-color: rgba(255,255,255,0.1);
|
|
}
|
|
|
|
.check-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
background: linear-gradient(135deg, #10b981, #059669);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.btn-select-package {
|
|
width: 100%;
|
|
padding: 1rem;
|
|
border-radius: 12px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
border: none;
|
|
}
|
|
|
|
.pricing-card:not(.featured) .btn-select-package {
|
|
background: var(--bg-primary);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.pricing-card:not(.featured) .btn-select-package:hover {
|
|
background: #2563eb;
|
|
color: white;
|
|
}
|
|
|
|
.pricing-card.featured .btn-select-package {
|
|
background: white;
|
|
color: #1e3a5f;
|
|
}
|
|
|
|
.pricing-card.featured .btn-select-package:hover {
|
|
background: #FFD700;
|
|
}
|
|
|
|
/* Routes Section */
|
|
.routes-section {
|
|
padding: 6rem 0;
|
|
background: var(--bg-primary);
|
|
}
|
|
|
|
.route-showcase {
|
|
position: relative;
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
height: 500px;
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.route-map {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.route-overlay {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
|
|
padding: 3rem;
|
|
color: white;
|
|
}
|
|
|
|
.route-title {
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.route-stops {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 2rem;
|
|
opacity: 0.95;
|
|
}
|
|
|
|
.route-pins {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.route-pin {
|
|
position: absolute;
|
|
width: 40px;
|
|
height: 40px;
|
|
background: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.route-pin:hover {
|
|
transform: scale(1.2);
|
|
}
|
|
|
|
.route-pin-tooltip {
|
|
position: absolute;
|
|
bottom: 50px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: white;
|
|
color: #1e3a5f;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
white-space: nowrap;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.route-pin:hover .route-pin-tooltip {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Testimonials Section */
|
|
.testimonials-section {
|
|
padding: 6rem 0;
|
|
background: linear-gradient(135deg, #f8fafc, #e2e8f0);
|
|
}
|
|
|
|
.testimonials-carousel {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
}
|
|
|
|
.testimonials-track {
|
|
display: flex;
|
|
gap: 2rem;
|
|
overflow-x: auto;
|
|
scroll-snap-type: x mandatory;
|
|
scrollbar-width: none;
|
|
-ms-overflow-style: none;
|
|
}
|
|
|
|
.testimonials-track::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.testimonial-card {
|
|
background: white;
|
|
border-radius: 20px;
|
|
padding: 2.5rem;
|
|
min-width: 380px;
|
|
scroll-snap-align: start;
|
|
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.testimonial-rating {
|
|
display: flex;
|
|
gap: 0.25rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.testimonial-text {
|
|
font-size: 1.125rem;
|
|
line-height: 1.7;
|
|
color: var(--text-primary);
|
|
margin-bottom: 2rem;
|
|
font-style: italic;
|
|
}
|
|
|
|
.testimonial-author {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.author-avatar {
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.author-info {
|
|
flex: 1;
|
|
}
|
|
|
|
.author-name {
|
|
font-weight: 700;
|
|
color: var(--text-primary);
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.author-location {
|
|
color: var(--text-secondary);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* CTA Section */
|
|
.cta-section {
|
|
padding: 6rem 0;
|
|
background: linear-gradient(135deg, #1e3a5f, #2563eb);
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.cta-content h2 {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 3.5rem;
|
|
font-weight: 900;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.cta-content p {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 3rem;
|
|
opacity: 0.95;
|
|
max-width: 700px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.cta-buttons {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.btn-cta-primary {
|
|
background: white;
|
|
color: #1e3a5f;
|
|
padding: 1.25rem 3rem;
|
|
border-radius: 50px;
|
|
font-size: 1.125rem;
|
|
font-weight: 700;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.btn-cta-primary:hover {
|
|
background: #FFD700;
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
|
|
}
|
|
|
|
.btn-cta-secondary {
|
|
background: transparent;
|
|
color: white;
|
|
padding: 1.25rem 3rem;
|
|
border-radius: 50px;
|
|
font-size: 1.125rem;
|
|
font-weight: 700;
|
|
border: 2px solid white;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.btn-cta-secondary:hover {
|
|
background: white;
|
|
color: #1e3a5f;
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes bounce {
|
|
0%, 100% {
|
|
transform: translateY(0) translateX(-50%);
|
|
}
|
|
50% {
|
|
transform: translateY(10px) translateX(-50%);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.yacht-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.pricing-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.pricing-card.featured {
|
|
transform: scale(1);
|
|
}
|
|
|
|
.charter-hero h1 {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.hero-cta-group {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Navigation -->
|
|
<nav class="voyage-nav visible" id="voyageNav">
|
|
<div class="nav-container">
|
|
<div class="nav-brand">
|
|
<img src="logo.jpg" alt="HarborSmith" class="nav-logo">
|
|
<span>HarborSmith</span>
|
|
</div>
|
|
<div class="nav-links">
|
|
<a href="index.html" class="nav-link">Home</a>
|
|
<a href="charter.html" class="nav-link active">Charters</a>
|
|
<a href="maintenance.html" class="nav-link">Maintenance</a>
|
|
<a href="about.html" class="nav-link">About</a>
|
|
<a href="contact.html" class="nav-link">Contact</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero Section with Video Background -->
|
|
<section class="charter-hero">
|
|
<img src="golden_gate.jpg" alt="Luxury Yacht" class="charter-hero-video">
|
|
<div class="charter-hero-overlay"></div>
|
|
<div class="charter-hero-content">
|
|
<h1>
|
|
Luxury Yacht
|
|
<span class="luxury-accent">Charter Experience</span>
|
|
</h1>
|
|
<p>Discover the ultimate maritime luxury in San Francisco Bay</p>
|
|
<div class="hero-cta-group">
|
|
<button class="btn-hero-primary" onclick="window.location.href='charter-booking-1.html'">
|
|
<i data-lucide="anchor"></i>
|
|
Explore Fleet
|
|
</button>
|
|
<button class="btn-hero-secondary">
|
|
<i data-lucide="play"></i>
|
|
Watch Video
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="scroll-indicator">
|
|
<i data-lucide="waves"></i>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Premium Fleet Section -->
|
|
<section class="fleet-section">
|
|
<div class="container">
|
|
<div class="fleet-header">
|
|
<h2>Our Premium Fleet</h2>
|
|
<p>Choose from our collection of luxury yachts, each offering unique experiences and world-class amenities</p>
|
|
</div>
|
|
|
|
<div class="yacht-grid">
|
|
<!-- Yacht 1 -->
|
|
<div class="yacht-card">
|
|
<div class="yacht-image-container">
|
|
<img src="golden_gate.jpg" alt="Bay Dreamer" class="yacht-image">
|
|
<div class="yacht-badge">
|
|
<i data-lucide="crown"></i>
|
|
Premium
|
|
</div>
|
|
<div class="view-360">
|
|
<i data-lucide="eye"></i>
|
|
</div>
|
|
<div class="yacht-overlay">
|
|
<div class="yacht-rating">
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<span style="margin-left: 0.5rem;">(5.0)</span>
|
|
</div>
|
|
<div class="yacht-location">
|
|
<i data-lucide="map-pin"></i>
|
|
San Francisco Bay
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="yacht-details">
|
|
<div class="yacht-header">
|
|
<div>
|
|
<div class="yacht-name">Bay Dreamer</div>
|
|
<div class="yacht-specs">
|
|
<span class="yacht-spec">
|
|
<i data-lucide="users"></i>
|
|
12 guests
|
|
</span>
|
|
<span class="yacht-spec">
|
|
<i data-lucide="anchor"></i>
|
|
85ft
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="yacht-price">
|
|
<div class="yacht-price-amount">$2,500</div>
|
|
<div class="yacht-price-period">per day</div>
|
|
</div>
|
|
</div>
|
|
<div class="yacht-features">
|
|
<span class="feature-tag">Jacuzzi</span>
|
|
<span class="feature-tag">Chef</span>
|
|
<span class="feature-tag">Water Sports</span>
|
|
</div>
|
|
<div class="yacht-actions">
|
|
<button class="btn-book-yacht" onclick="window.location.href='charter-booking-1.html'">
|
|
Book Now
|
|
</button>
|
|
<button class="btn-call">
|
|
<i data-lucide="phone"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Yacht 2 -->
|
|
<div class="yacht-card">
|
|
<div class="yacht-image-container">
|
|
<img src="yacht_party_couple_holding_hands.jpg" alt="Azure Dream" class="yacht-image">
|
|
<div class="yacht-badge">
|
|
<i data-lucide="crown"></i>
|
|
Premium
|
|
</div>
|
|
<div class="view-360">
|
|
<i data-lucide="eye"></i>
|
|
</div>
|
|
<div class="yacht-overlay">
|
|
<div class="yacht-rating">
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<span style="margin-left: 0.5rem;">(5.0)</span>
|
|
</div>
|
|
<div class="yacht-location">
|
|
<i data-lucide="map-pin"></i>
|
|
San Francisco Bay
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="yacht-details">
|
|
<div class="yacht-header">
|
|
<div>
|
|
<div class="yacht-name">Azure Dream</div>
|
|
<div class="yacht-specs">
|
|
<span class="yacht-spec">
|
|
<i data-lucide="users"></i>
|
|
8 guests
|
|
</span>
|
|
<span class="yacht-spec">
|
|
<i data-lucide="anchor"></i>
|
|
65ft
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="yacht-price">
|
|
<div class="yacht-price-amount">$1,800</div>
|
|
<div class="yacht-price-period">per day</div>
|
|
</div>
|
|
</div>
|
|
<div class="yacht-features">
|
|
<span class="feature-tag">Sunset Deck</span>
|
|
<span class="feature-tag">Snorkeling</span>
|
|
<span class="feature-tag">Bar</span>
|
|
</div>
|
|
<div class="yacht-actions">
|
|
<button class="btn-book-yacht" onclick="window.location.href='charter-booking-1.html'">
|
|
Book Now
|
|
</button>
|
|
<button class="btn-call">
|
|
<i data-lucide="phone"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Yacht 3 -->
|
|
<div class="yacht-card">
|
|
<div class="yacht-image-container">
|
|
<img src="diver.jpg" alt="Royal Serenity" class="yacht-image">
|
|
<div class="yacht-badge">
|
|
<i data-lucide="crown"></i>
|
|
Premium
|
|
</div>
|
|
<div class="view-360">
|
|
<i data-lucide="eye"></i>
|
|
</div>
|
|
<div class="yacht-overlay">
|
|
<div class="yacht-rating">
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<span style="margin-left: 0.5rem;">(5.0)</span>
|
|
</div>
|
|
<div class="yacht-location">
|
|
<i data-lucide="map-pin"></i>
|
|
San Francisco Bay
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="yacht-details">
|
|
<div class="yacht-header">
|
|
<div>
|
|
<div class="yacht-name">Royal Serenity</div>
|
|
<div class="yacht-specs">
|
|
<span class="yacht-spec">
|
|
<i data-lucide="users"></i>
|
|
16 guests
|
|
</span>
|
|
<span class="yacht-spec">
|
|
<i data-lucide="anchor"></i>
|
|
95ft
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="yacht-price">
|
|
<div class="yacht-price-amount">$3,200</div>
|
|
<div class="yacht-price-period">per day</div>
|
|
</div>
|
|
</div>
|
|
<div class="yacht-features">
|
|
<span class="feature-tag">Helicopter Pad</span>
|
|
<span class="feature-tag">Spa</span>
|
|
<span class="feature-tag">Cinema</span>
|
|
</div>
|
|
<div class="yacht-actions">
|
|
<button class="btn-book-yacht" onclick="window.location.href='charter-booking-1.html'">
|
|
Book Now
|
|
</button>
|
|
<button class="btn-call">
|
|
<i data-lucide="phone"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Pricing Packages -->
|
|
<section class="pricing-section">
|
|
<div class="container">
|
|
<div class="fleet-header">
|
|
<h2>Charter Packages</h2>
|
|
<p>Flexible packages designed to create unforgettable maritime experiences</p>
|
|
</div>
|
|
|
|
<div class="pricing-grid">
|
|
<!-- Half Day Package -->
|
|
<div class="pricing-card">
|
|
<div class="pricing-name">Half Day</div>
|
|
<div class="pricing-price">$1,200</div>
|
|
<div class="pricing-duration">4 hours</div>
|
|
<ul class="pricing-features">
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Professional crew
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Welcome drinks
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Snorkeling equipment
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Light refreshments
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Fuel included
|
|
</li>
|
|
</ul>
|
|
<button class="btn-select-package" onclick="window.location.href='charter-booking-1.html'">
|
|
Choose Package
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Full Day Package -->
|
|
<div class="pricing-card featured">
|
|
<div class="pricing-name">Full Day</div>
|
|
<div class="pricing-price">$2,400</div>
|
|
<div class="pricing-duration">8 hours</div>
|
|
<ul class="pricing-features">
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Professional crew
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Gourmet lunch
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Premium bar service
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Water sports equipment
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Fuel included
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Sunset cruise
|
|
</li>
|
|
</ul>
|
|
<button class="btn-select-package" onclick="window.location.href='charter-booking-1.html'">
|
|
Choose Package
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Multi-Day Package -->
|
|
<div class="pricing-card">
|
|
<div class="pricing-name">Multi-Day</div>
|
|
<div class="pricing-price">$8,500</div>
|
|
<div class="pricing-duration">3 days</div>
|
|
<ul class="pricing-features">
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Professional crew
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
All meals included
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Premium accommodations
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Island hopping
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
All activities
|
|
</li>
|
|
<li>
|
|
<span class="check-icon">✓</span>
|
|
Concierge service
|
|
</li>
|
|
</ul>
|
|
<button class="btn-select-package" onclick="window.location.href='charter-booking-1.html'">
|
|
Choose Package
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Popular Routes -->
|
|
<section class="routes-section">
|
|
<div class="container">
|
|
<div class="fleet-header">
|
|
<h2>Popular Routes</h2>
|
|
<p>Explore breathtaking destinations across San Francisco Bay</p>
|
|
</div>
|
|
|
|
<div class="route-showcase">
|
|
<img src="golden_gate.jpg" alt="San Francisco Bay Route" class="route-map">
|
|
<div class="route-pins">
|
|
<div class="route-pin" style="top: 30%; left: 20%;">
|
|
<i data-lucide="map-pin"></i>
|
|
<span class="route-pin-tooltip">Golden Gate Bridge</span>
|
|
</div>
|
|
<div class="route-pin" style="top: 50%; left: 40%;">
|
|
<i data-lucide="map-pin"></i>
|
|
<span class="route-pin-tooltip">Alcatraz Island</span>
|
|
</div>
|
|
<div class="route-pin" style="top: 40%; left: 60%;">
|
|
<i data-lucide="map-pin"></i>
|
|
<span class="route-pin-tooltip">Angel Island</span>
|
|
</div>
|
|
<div class="route-pin" style="top: 60%; left: 80%;">
|
|
<i data-lucide="map-pin"></i>
|
|
<span class="route-pin-tooltip">Sausalito</span>
|
|
</div>
|
|
</div>
|
|
<div class="route-overlay">
|
|
<h3 class="route-title">Bay Area Paradise</h3>
|
|
<p class="route-stops">Golden Gate • Alcatraz • Angel Island • Sausalito</p>
|
|
<button class="btn-hero-primary" onclick="window.location.href='charter-booking-1.html'">
|
|
<i data-lucide="compass"></i>
|
|
View Route Details
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Testimonials -->
|
|
<section class="testimonials-section">
|
|
<div class="container">
|
|
<div class="fleet-header">
|
|
<h2>What Our Guests Say</h2>
|
|
<p>Hear from those who have experienced the ultimate in luxury yacht charter</p>
|
|
</div>
|
|
|
|
<div class="testimonials-carousel">
|
|
<div class="testimonials-track">
|
|
<!-- Testimonial 1 -->
|
|
<div class="testimonial-card">
|
|
<div class="testimonial-rating">
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
</div>
|
|
<p class="testimonial-text">
|
|
"An absolutely magical experience! The crew was professional and the yacht was pristine. We'll definitely be booking again."
|
|
</p>
|
|
<div class="testimonial-author">
|
|
<img src="yacht_party_couple_holding_hands.jpg" alt="Sarah Johnson" class="author-avatar">
|
|
<div class="author-info">
|
|
<div class="author-name">Sarah Johnson</div>
|
|
<div class="author-location">New York, USA</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Testimonial 2 -->
|
|
<div class="testimonial-card">
|
|
<div class="testimonial-rating">
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
</div>
|
|
<p class="testimonial-text">
|
|
"Perfect for our anniversary celebration. The sunset cruise was breathtaking and the service was impeccable."
|
|
</p>
|
|
<div class="testimonial-author">
|
|
<img src="diver.jpg" alt="Marco Rodriguez" class="author-avatar">
|
|
<div class="author-info">
|
|
<div class="author-name">Marco Rodriguez</div>
|
|
<div class="author-location">Barcelona, Spain</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Testimonial 3 -->
|
|
<div class="testimonial-card">
|
|
<div class="testimonial-rating">
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
<i data-lucide="star" class="star"></i>
|
|
</div>
|
|
<p class="testimonial-text">
|
|
"Exceeded all expectations! The yacht was luxurious and the crew made sure every detail was perfect."
|
|
</p>
|
|
<div class="testimonial-author">
|
|
<img src="logo.jpg" alt="Emily Chen" class="author-avatar">
|
|
<div class="author-info">
|
|
<div class="author-name">Emily Chen</div>
|
|
<div class="author-location">Singapore</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA Section -->
|
|
<section class="cta-section">
|
|
<div class="container">
|
|
<div class="cta-content">
|
|
<h2>Ready to Set Sail?</h2>
|
|
<p>Book your luxury yacht charter today and create memories that will last a lifetime</p>
|
|
<div class="cta-buttons">
|
|
<button class="btn-cta-primary" onclick="window.location.href='charter-booking-1.html'">
|
|
<i data-lucide="calendar"></i>
|
|
Book Now
|
|
</button>
|
|
<button class="btn-cta-secondary" onclick="window.location.href='tel:415-555-0123'">
|
|
<i data-lucide="phone"></i>
|
|
Call (415) 555-0123
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="voyage-footer">
|
|
<div class="footer-container">
|
|
<div class="footer-content">
|
|
<div class="footer-brand">
|
|
<img src="logo.jpg" alt="HarborSmith" class="footer-logo">
|
|
<h3>HarborSmith</h3>
|
|
<p>Your trusted partner for unforgettable Bay Area yacht experiences since 2009</p>
|
|
<div class="social-links">
|
|
<a href="#" aria-label="Facebook"><i data-lucide="facebook"></i></a>
|
|
<a href="#" aria-label="Instagram"><i data-lucide="instagram"></i></a>
|
|
<a href="#" aria-label="Twitter"><i data-lucide="twitter"></i></a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-links">
|
|
<h4>Quick Links</h4>
|
|
<a href="charter.html">Our Fleet</a>
|
|
<a href="charter.html#pricing">Pricing</a>
|
|
<a href="about.html#safety">Safety</a>
|
|
<a href="faq.html">FAQ</a>
|
|
</div>
|
|
|
|
<div class="footer-contact">
|
|
<h4>Get in Touch</h4>
|
|
<p><i data-lucide="map-pin" class="footer-icon"></i> Pier 39, San Francisco, CA</p>
|
|
<p><i data-lucide="phone" class="footer-icon"></i> (415) 555-0123</p>
|
|
<p><i data-lucide="mail" class="footer-icon"></i> hello@harborsmith.com</p>
|
|
<p><i data-lucide="clock" class="footer-icon"></i> Open 7 days, 8am-8pm</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-bottom">
|
|
<p>© 2024 HarborSmith Yacht Services. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script>
|
|
// Initialize Lucide icons
|
|
lucide.createIcons();
|
|
|
|
// Smooth scroll for testimonials
|
|
const track = document.querySelector('.testimonials-track');
|
|
let isDown = false;
|
|
let startX;
|
|
let scrollLeft;
|
|
|
|
if (track) {
|
|
track.addEventListener('mousedown', (e) => {
|
|
isDown = true;
|
|
startX = e.pageX - track.offsetLeft;
|
|
scrollLeft = track.scrollLeft;
|
|
});
|
|
|
|
track.addEventListener('mouseleave', () => {
|
|
isDown = false;
|
|
});
|
|
|
|
track.addEventListener('mouseup', () => {
|
|
isDown = false;
|
|
});
|
|
|
|
track.addEventListener('mousemove', (e) => {
|
|
if (!isDown) return;
|
|
e.preventDefault();
|
|
const x = e.pageX - track.offsetLeft;
|
|
const walk = (x - startX) * 2;
|
|
track.scrollLeft = scrollLeft - walk;
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |