2026-02-02 20:34:35 +00:00
|
|
|
.homeView {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 3rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
padding: 3rem 2rem;
|
|
|
|
|
background: linear-gradient(135deg, var(--bg-secondary, #f3ede4) 0%, var(--bg-primary, #faf7f2) 100%);
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.heroTitle {
|
2026-02-03 14:12:48 +00:00
|
|
|
font-size: 3rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
font-weight: 700;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-primary, #1a1612);
|
2026-02-02 20:34:35 +00:00
|
|
|
margin-bottom: 1rem;
|
2026-02-03 14:12:48 +00:00
|
|
|
line-height: 1.1;
|
|
|
|
|
letter-spacing: -0.02em;
|
2026-02-03 10:11:23 +00:00
|
|
|
font-family: var(--font-playfair), 'Playfair Display', serif;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.heroDescription {
|
|
|
|
|
font-size: 1.125rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-02-02 20:34:35 +00:00
|
|
|
max-width: 600px;
|
|
|
|
|
margin: 0 auto;
|
2026-02-03 10:11:23 +00:00
|
|
|
line-height: 1.6;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.locationBanner {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
padding: 1rem 1.5rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
background: rgba(45, 125, 125, 0.1);
|
|
|
|
|
border: 1px solid rgba(45, 125, 125, 0.3);
|
|
|
|
|
border-radius: 12px;
|
2026-02-02 20:34:35 +00:00
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
font-size: 0.9375rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
font-weight: 500;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.locationIcon {
|
|
|
|
|
font-size: 1.25rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--accent-teal, #2d7d7d);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.results {
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sectionHeader {
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sectionHeader h2 {
|
|
|
|
|
font-size: 1.875rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
font-weight: 700;
|
2026-02-03 14:12:48 +00:00
|
|
|
margin-bottom: 0.75rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
font-family: var(--font-playfair), 'Playfair Display', serif;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-03 14:12:48 +00:00
|
|
|
/* Decorative coral bar under section headings */
|
|
|
|
|
.sectionHeader h2::after {
|
|
|
|
|
content: '';
|
|
|
|
|
display: block;
|
|
|
|
|
width: 60px;
|
|
|
|
|
height: 3px;
|
|
|
|
|
background: var(--accent-coral, #e07256);
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
margin-top: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-02 20:34:35 +00:00
|
|
|
.sectionDescription {
|
|
|
|
|
font-size: 1rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-02-02 20:34:35 +00:00
|
|
|
margin: 0;
|
2026-02-03 10:11:23 +00:00
|
|
|
line-height: 1.6;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.resultsHeader {
|
|
|
|
|
margin-bottom: 2rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
padding-bottom: 1rem;
|
|
|
|
|
border-bottom: 2px solid var(--border-color, #e5dfd5);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.resultsHeader h2 {
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
font-weight: 600;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-primary, #1a1612);
|
2026-02-02 20:34:35 +00:00
|
|
|
margin: 0;
|
2026-02-03 10:11:23 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.resultsHeader h2::before {
|
|
|
|
|
content: '';
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 4px;
|
|
|
|
|
height: 1.25em;
|
|
|
|
|
background: var(--accent-coral, #e07256);
|
|
|
|
|
border-radius: 2px;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-03 14:12:48 +00:00
|
|
|
/* Staggered grid entry animation */
|
|
|
|
|
.grid > * {
|
|
|
|
|
animation: gridItemFadeIn 0.4s ease-out both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid > *:nth-child(1) { animation-delay: 0ms; }
|
|
|
|
|
.grid > *:nth-child(2) { animation-delay: 50ms; }
|
|
|
|
|
.grid > *:nth-child(3) { animation-delay: 100ms; }
|
|
|
|
|
.grid > *:nth-child(4) { animation-delay: 150ms; }
|
|
|
|
|
.grid > *:nth-child(5) { animation-delay: 200ms; }
|
|
|
|
|
.grid > *:nth-child(6) { animation-delay: 250ms; }
|
|
|
|
|
.grid > *:nth-child(7) { animation-delay: 300ms; }
|
|
|
|
|
.grid > *:nth-child(8) { animation-delay: 350ms; }
|
|
|
|
|
.grid > *:nth-child(9) { animation-delay: 400ms; }
|
|
|
|
|
.grid > *:nth-child(n+10) { animation-delay: 450ms; }
|
|
|
|
|
|
|
|
|
|
@keyframes gridItemFadeIn {
|
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(16px);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-03 10:11:23 +00:00
|
|
|
.emptyState {
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 4rem 2rem;
|
|
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.emptyStateTitle {
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
font-family: var(--font-playfair), 'Playfair Display', serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.emptyStateDescription {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-02 20:34:35 +00:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.hero {
|
2026-02-03 10:11:23 +00:00
|
|
|
padding: 2rem 1rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
margin-bottom: 2rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
border-radius: 12px;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.heroTitle {
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.heroDescription {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.locationBanner {
|
|
|
|
|
padding: 0.875rem 1rem;
|
|
|
|
|
font-size: 0.875rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.emptyState {
|
|
|
|
|
padding: 3rem 1.5rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
}
|