Initial import of HarborSmith website
Some checks failed
build-website / build (push) Failing after 1m2s

This commit is contained in:
2025-09-18 22:20:01 +02:00
commit ec72c5d62b
168 changed files with 65020 additions and 0 deletions

View File

@@ -0,0 +1,586 @@
/* HarborSmith - Booking Styles */
/* ============================= */
/* Progress Bar */
.booking-progress {
padding: 100px 0 40px;
background: var(--surface);
border-bottom: 1px solid var(--border);
}
.progress-steps {
display: flex;
align-items: center;
justify-content: center;
max-width: 600px;
margin: 0 auto;
}
.progress-step {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
.step-number {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--background);
border: 2px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
color: var(--text-secondary);
transition: all var(--transition-base);
}
.progress-step.active .step-number {
background: var(--primary);
color: white;
border-color: var(--primary);
}
.progress-step.completed .step-number {
background: var(--accent);
color: white;
border-color: var(--accent);
}
.step-label {
margin-top: 8px;
font-size: var(--text-sm);
color: var(--text-secondary);
white-space: nowrap;
}
.progress-step.active .step-label {
color: var(--primary);
font-weight: 600;
}
.progress-line {
width: 80px;
height: 2px;
background: var(--border);
margin: 0 10px;
position: relative;
top: -20px;
}
.progress-step.completed + .progress-line {
background: var(--accent);
}
/* Booking Section */
.booking-section {
padding: 60px 0;
min-height: calc(100vh - 200px);
}
.booking-header {
text-align: center;
margin-bottom: 40px;
}
.booking-header h1 {
font-size: var(--text-4xl);
margin-bottom: 10px;
}
.booking-header p {
color: var(--text-secondary);
font-size: var(--text-lg);
}
.booking-content {
display: grid;
grid-template-columns: 1fr 350px;
gap: 40px;
}
.booking-main {
display: flex;
flex-direction: column;
gap: 30px;
}
.booking-card {
background: var(--background);
border: 1px solid var(--border);
border-radius: var(--radius-xl);
padding: 30px;
box-shadow: var(--shadow-sm);
}
.booking-card h3 {
font-size: var(--text-xl);
margin-bottom: 20px;
}
/* Calendar */
.calendar-container {
background: var(--surface);
border-radius: var(--radius-lg);
padding: 20px;
}
.calendar-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.calendar-nav {
width: 32px;
height: 32px;
border-radius: var(--radius-md);
border: 1px solid var(--border);
background: var(--background);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
transition: all var(--transition-fast);
}
.calendar-nav:hover {
background: var(--primary);
color: white;
border-color: var(--primary);
}
.calendar-month {
font-size: var(--text-lg);
font-weight: 600;
}
.calendar-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 5px;
}
.calendar-day-header {
text-align: center;
font-size: var(--text-sm);
font-weight: 600;
color: var(--text-secondary);
padding: 10px 0;
}
.calendar-day {
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
border-radius: var(--radius-md);
cursor: pointer;
font-weight: 500;
transition: all var(--transition-fast);
}
.calendar-day.other-month {
color: var(--text-secondary);
opacity: 0.3;
}
.calendar-day.available {
background: var(--background);
color: var(--text);
}
.calendar-day.available:hover {
background: var(--primary);
color: white;
}
.calendar-day.unavailable {
background: var(--surface);
color: var(--text-secondary);
cursor: not-allowed;
text-decoration: line-through;
}
.calendar-day.selected {
background: var(--primary);
color: white;
}
.calendar-legend {
display: flex;
gap: 20px;
margin-top: 20px;
font-size: var(--text-sm);
}
.legend-dot {
display: inline-block;
width: 12px;
height: 12px;
border-radius: 50%;
margin-right: 5px;
}
.legend-dot.available {
background: var(--background);
border: 2px solid var(--primary);
}
.legend-dot.unavailable {
background: var(--text-secondary);
}
.legend-dot.selected {
background: var(--primary);
}
/* Form Elements */
.form-group {
margin-bottom: 25px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: var(--text);
}
.form-control {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--border);
border-radius: var(--radius-md);
font-size: var(--text-base);
font-family: inherit;
transition: all var(--transition-fast);
background: var(--background);
}
.form-control:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.form-text {
display: block;
margin-top: 5px;
font-size: var(--text-sm);
color: var(--text-secondary);
}
/* Duration Options */
.duration-options {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.duration-option input {
display: none;
}
.duration-card {
display: flex;
flex-direction: column;
padding: 20px;
border: 2px solid var(--border);
border-radius: var(--radius-lg);
cursor: pointer;
transition: all var(--transition-base);
position: relative;
}
.duration-option input:checked + .duration-card {
border-color: var(--primary);
background: var(--surface);
}
.duration-card:hover {
border-color: var(--primary);
transform: translateY(-2px);
}
.duration-time {
font-size: var(--text-lg);
font-weight: 600;
margin-bottom: 5px;
}
.duration-price {
color: var(--primary);
font-size: var(--text-xl);
font-weight: 700;
}
.duration-badge {
position: absolute;
top: 10px;
right: 10px;
padding: 4px 8px;
background: var(--accent);
color: white;
font-size: var(--text-xs);
border-radius: var(--radius-full);
font-weight: 600;
}
/* Booking Sidebar */
.booking-sidebar {
display: flex;
flex-direction: column;
gap: 30px;
}
.booking-summary {
background: var(--surface);
border-radius: var(--radius-xl);
padding: 30px;
position: sticky;
top: 100px;
}
.booking-summary h3 {
font-size: var(--text-xl);
margin-bottom: 20px;
}
.summary-item {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
font-size: var(--text-base);
}
.summary-item span {
color: var(--text-secondary);
}
.summary-item strong {
color: var(--text);
}
.summary-divider {
height: 1px;
background: var(--border);
margin: 20px 0;
}
.summary-total {
font-size: var(--text-lg);
}
.summary-total strong {
color: var(--primary);
font-size: var(--text-2xl);
}
.summary-note {
font-size: var(--text-sm);
color: var(--text-secondary);
font-style: italic;
margin-top: 15px;
}
.booking-help {
background: var(--background);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 20px;
text-align: center;
}
.booking-help h4 {
font-size: var(--text-lg);
margin-bottom: 10px;
}
.booking-help p {
color: var(--text-secondary);
margin-bottom: 15px;
font-size: var(--text-sm);
}
/* Navigation */
.booking-navigation {
display: flex;
justify-content: space-between;
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid var(--border);
}
/* Yacht Selection Grid */
.yacht-selection-grid {
display: grid;
gap: 30px;
}
.yacht-select-card {
display: grid;
grid-template-columns: 300px 1fr;
background: var(--background);
border: 2px solid var(--border);
border-radius: var(--radius-xl);
overflow: hidden;
transition: all var(--transition-base);
cursor: pointer;
}
.yacht-select-card:hover {
border-color: var(--primary);
box-shadow: var(--shadow-lg);
}
.yacht-select-card.selected {
border-color: var(--primary);
background: var(--surface);
}
.yacht-select-image {
height: 200px;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: var(--text-xl);
}
.yacht-select-info {
padding: 30px;
}
.yacht-select-header {
display: flex;
justify-content: space-between;
align-items: start;
margin-bottom: 15px;
}
.yacht-select-name {
font-size: var(--text-2xl);
font-weight: 700;
margin-bottom: 5px;
}
.yacht-select-type {
color: var(--text-secondary);
}
.yacht-select-price {
text-align: right;
}
.yacht-select-specs {
display: flex;
gap: 30px;
margin: 20px 0;
}
.spec-item {
display: flex;
align-items: center;
gap: 8px;
color: var(--text-secondary);
font-size: var(--text-sm);
}
/* Customization Options */
.customization-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.addon-card {
border: 2px solid var(--border);
border-radius: var(--radius-lg);
padding: 20px;
transition: all var(--transition-base);
cursor: pointer;
}
.addon-card:hover {
border-color: var(--primary);
}
.addon-card.selected {
border-color: var(--primary);
background: var(--surface);
}
.addon-header {
display: flex;
justify-content: space-between;
align-items: start;
margin-bottom: 10px;
}
.addon-name {
font-weight: 600;
}
.addon-price {
color: var(--primary);
font-weight: 700;
}
.addon-description {
font-size: var(--text-sm);
color: var(--text-secondary);
}
/* Responsive */
@media (max-width: 1024px) {
.booking-content {
grid-template-columns: 1fr;
}
.booking-sidebar {
order: -1;
}
.booking-summary {
position: static;
}
}
@media (max-width: 768px) {
.progress-steps {
overflow-x: auto;
padding: 0 20px;
}
.progress-line {
width: 40px;
}
.step-label {
font-size: var(--text-xs);
}
.duration-options {
grid-template-columns: 1fr;
}
.yacht-select-card {
grid-template-columns: 1fr;
}
.booking-navigation {
flex-direction: column;
gap: 15px;
}
.booking-navigation .btn {
width: 100%;
justify-content: center;
}
}