:root {
    --color-bg: #fdfdfd;
    --color-text-main: #1a1a1a;
    --color-text-sub: #555555;
    --color-accent-gold: #c5a059;
    --color-accent-gold-light: #e6cfa3;
    --color-charcoal: #333333;
    --color-sage: #8f9e8a;
    --color-sage-light: #e0e8de;
    --font-display: 'Playfair Display', serif;
    --font-ui: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for fixed navbar */
}

/* Navbar Styles */
.navbar-floating {
    padding: 1rem 0;
    transition: all 0.4s ease;
    background-color: transparent;
}

.navbar-floating.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
}

.text-charcoal {
    color: var(--color-charcoal);
}

.bg-charcoal {
    background-color: var(--color-charcoal);
}

.navbar-nav .nav-link {
    color: #555;
    /* Slate gray */
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-accent-gold);
}

/* Button Styles override/additions */
.btn-gold {
    background-color: var(--color-accent-gold);
    color: white;
    border: 1px solid var(--color-accent-gold);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #b08d4a;
    /* Slightly darker gold */
    border-color: #b08d4a;
    color: white;
}

.btn-gold-outline {
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    background-color: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-gold-outline:hover {
    background-color: var(--color-accent-gold);
    color: white;
}

/* --- Premium Auth Styles --- */

/* Wrapper for Full Page */
.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfc;
    /* Off-white base */
    position: relative;
    padding: 2rem;
}

.auth-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* The Card */
.auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 40px rgba(15, 23, 42, 0.08);
    /* Soft wide shadow */
    border: 1px solid rgba(15, 23, 42, 0.04);
    position: relative;
    z-index: 10;
}

/* Header & Segmented Control */
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-modes {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.auth-mode-link {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-sub);
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.auth-mode-link.active {
    color: var(--color-text-main);
    font-weight: 600;
}

.auth-mode-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--color-accent-gold);
    border-radius: 2px;
}

/* Floating Labels */
.form-group-float {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control-float {
    width: 100%;
    height: 52px;
    padding: 1.5rem 1rem 0.5rem;
    font-family: var(--font-ui);
    font-size: 1rem;
    color: var(--color-text-main);
    background: transparent;
    border: 1px solid #e2e8f0;
    /* Neutral border */
    border-radius: 12px;
    outline: none;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.form-label-float {
    position: absolute;
    left: 1rem;
    top: 16px;
    font-size: 1rem;
    color: #94a3b8;
    /* Muted gray */
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: left top;
}

/* Focus & Value States */
.form-control-float:focus {
    border-color: #cbd5e1;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
    /* Gold glow */
}

/* Focus Sweep Animation */
.focus-line {
    position: absolute;
    bottom: 0px;
    left: 12px;
    right: 12px;
    height: 1px;
    background-color: var(--color-accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    opacity: 0;
}

.form-control-float:focus~.focus-line {
    transform: scaleX(1);
    opacity: 1;
}

/* Move label up on focus or has-value */
.form-control-float:focus~.form-label-float,
.form-control-float:not(:placeholder-shown)~.form-label-float,
.form-select-float:focus~.form-label-float,
.form-select-float:not(:placeholder-shown)~.form-label-float {
    transform: translateY(-10px) scale(0.85);
    color: #64748b;
}

.form-select-float {
    width: 100%;
    height: 52px;
    padding: 1.5rem 1rem 0.5rem;
    font-family: var(--font-ui);
    font-size: 1rem;
    color: var(--color-text-main);
    background-color: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    cursor: pointer;
}

.form-select-float:focus {
    border-color: #cbd5e1;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.form-select-float:focus~.focus-line {
    transform: scaleX(1);
    opacity: 1;
}

/* Autocomplete Combobox */
.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Soft shadow defined in card */
}

.autocomplete-item {
    cursor: pointer;
    transition: background-color 0.15s ease;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background-color: #f8fafc;
    /* Light wash */
    color: var(--color-accent-gold);
}

.autocomplete-item strong {
    font-weight: 700;
    color: var(--color-text-main);
}

.border-bottom-light {
    border-bottom: 1px solid #f1f5f9;
}

/* Valid State */
.is-valid-selection .form-control-float,
.is-valid-selection .form-control {
    border-color: #198754 !important;
    padding-right: 2.5rem;
    /* Make room for icon */
    background-image: none;
    /* Remove default bootstrap validation icon if any */
}

.is-valid-selection .valid-check-icon {
    display: block !important;
    animation: bounceIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIn {
    0% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }

    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* Scrollbar for dropdown */
.autocomplete-results::-webkit-scrollbar {
    width: 6px;
}

.autocomplete-results::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.autocomplete-results::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

/* Buttons */
.btn-auth-primary {
    width: 100%;
    background-color: var(--color-text-main);
    color: white;
    font-weight: 500;
    padding: 14px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-top: 1rem;
}

.btn-auth-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-auth-primary:active {
    transform: scale(0.99);
}

/* Utilities */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-sub);
}

.auth-link {
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 500;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 16px;
    cursor: pointer;
    color: #94a3b8;
    background: none;
    border: none;
    padding: 0;
}

/* --- Excursion Detail Page --- */

/* Hero */
.excursion-detail-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    color: white;
}

.excursion-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Floating Sticky Card */
.sticky-apply-card-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    /* Pull up to overlap hero on desktop */
}

.sticky-apply-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 120px;
}

/* Mobile Booking Bar */
.mobile-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 0;
    height: 80px;
    z-index: 1040;
    /* Above core content, below modals */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    border-top: 1px solid #f0f0f0;
    animation: slideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Add padding to body on mobile so content isn't hidden behind bar */
@media (max-width: 991.98px) {
    body.has-mobile-bar {
        padding-bottom: 80px;
    }
}

.progress-custom {
    height: 6px;
    background-color: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar-custom {
    height: 100%;
    background-color: var(--color-accent-gold);
    transition: width 1s ease-out;
}

/* Key Facts Strip */
.key-fact-item {
    padding: 1rem 0;
    border-right: 1px solid #eee;
}

.key-fact-item:last-child {
    border-right: none;
}

.key-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-sub);
    margin-bottom: 0.25rem;
}

.key-value {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    /* JS reveal */
    transform: translateX(20px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: -2.6rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--color-accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px white;
    /* Create gap illusion */
}

.timeline-item.visible .timeline-dot {
    animation: pulseGold 1.5s infinite;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(197, 160, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

/* Accordion Custom */
details.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

details.faq-item summary {
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent-gold);
    font-weight: 300;
}

details.faq-item[open] summary::after {
    content: '-';
}

/* Final CTA */
.cta-block-sage {
    background-color: var(--color-sage);
    color: white;
    padding: 5rem 2rem;
    border-radius: 20px;
    text-align: center;
}

/* Filters Row */
.filters-row {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.form-select-minimal {
    border: none;
    background-color: transparent;
    font-weight: 500;
    color: var(--color-text-main);
    padding-left: 0;
    cursor: pointer;
    background-position: right 0 center;
}

.form-select-minimal:focus {
    box-shadow: none;
}

/* Excursion Card */
.excursion-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* "Expensive" ease */
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    /* Removed opacity:0/transform so it defaults to visible unless .stagger-card is used */
}

.excursion-card.stagger-card {
    opacity: 0;
    transform: translateY(20px);
}

.excursion-card.visible,
.excursion-card.stagger-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.excursion-card:hover {
    transform: translateY(-8px);
    /* Lift */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Image Area */
.excursion-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.excursion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.excursion-card:hover .excursion-image {
    transform: scale(1.05);
    /* Drift */
}

.excursion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0.6;
}

/* Status Pill */
.spots-pill {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-main);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.spots-pill.low {
    color: #e67e22;
    /* Warm accent */
}

.spots-pill.sold-out {
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

/* Sold Out State */
.excursion-card.sold-out .excursion-image {
    filter: grayscale(1);
    opacity: 0.8;
}

.excursion-card.sold-out {
    /* pointer-events: none;  <-- REMOVED to allow "More Info" click */
    /* Optional: disable hover entirely for sold out */
}

.excursion-card.sold-out .btn-apply-small {
    pointer-events: none;
    opacity: 0.5;
}

.excursion-card.sold-out:hover {
    transform: none;
    box-shadow: none;
}

/* Content Area */
.excursion-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.excursion-location {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--color-accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.excursion-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

/* Gold Underline Animation */
.title-underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: width 0.4s ease;
}

.excursion-card:hover .title-underline {
    width: 100%;
}

.excursion-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* CTAs */
.excursion-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-link-custom {
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
}

.btn-link-custom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-text-main);
    transition: width 0.3s ease;
}

.excursion-card:hover .btn-link-custom::after {
    width: 100%;
}

.btn-apply-small {
    padding: 8px 20px;
    border-radius: 50px;
    background-color: var(--color-text-main);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-apply-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-apply-small.disabled {
    background-color: #cbd5e1;
    pointer-events: none;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-ui);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: var(--font-display);
    font-weight: 600;
}

/* Utilities */
.text-gold {
    color: var(--color-accent-gold);
}

.text-sage {
    color: var(--color-sage);
}

.bg-sage-light {
    background-color: var(--color-sage-light);
}

.bg-sage {
    background-color: var(--color-sage);
}

.bg-gold-subtle {
    background-color: rgba(197, 160, 89, 0.12);
}

.text-gold-dark {
    color: #94763e;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

/* Component Animations */
.lift-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lift-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.shadow-hover-grow {
    transition: all 0.3s ease;
}

.shadow-hover-grow:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.shadow-sm-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-sm-hover:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.building-block-chip {
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: default;
}

.building-block-chip:hover {
    background-color: #7a8b75;
    /* Darker sage */
    transform: translateY(-1px);
}

.metric-card i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metric-card:hover i {
    transform: scale(1.2);
}

/* Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.draw-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease-out forwards;
    opacity: 0.3;
}

.city-dot {
    fill: var(--color-accent-gold);
    opacity: 0;
    animation: pulse 3s infinite;
}

/* Keyframes */
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes drift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* UI Elements */
.btn-primary-outline {
    border: 1px solid var(--color-accent-gold);
    color: var(--color-text-main);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-outline:hover {
    background-color: var(--color-accent-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* Sections */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #fdfdfd 0%, #f4f7f6 100%);
    z-index: -1;
}

.map-overlay {
    position: absolute;
    top: 0;
    right: -10%;
    width: 70%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.scroll-story-step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
    border-left: 1px solid transparent;
}

.scroll-story-step.visible {
    opacity: 1;
    transform: translateY(0);
    border-left: 1px solid #ddd;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent-gold);
}

.draw-icon {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.5s ease;
}

.scroll-story-step.visible .draw-icon {
    stroke-dashoffset: 0;
}

.excursion-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: none;
    overflow: hidden;
}

.excursion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.excursion-image {
    height: 300px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s ease;
}

.excursion-card:hover .excursion-image {
    transform: scale(1.03);
}

/* Typography Overrides */
h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

p.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-sub);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 140px;
        /* Clear fixed navbar + space */
        align-items: flex-start;
        padding-bottom: 4rem;
    }

    .map-overlay {
        width: 100%;
        right: 0;
        top: 10%;
        opacity: 0.15;
    }
}