body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

#destination-hero {
    position: relative;
    transition: background-image 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#destination-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

#destination-hero>* {
    position: relative;
    z-index: 1;
}

.swipe-indicator {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.swipe-indicator.left {
    left: 20px;
}

.swipe-indicator.right {
    right: 20px;
}

.swipe-indicator.active {
    opacity: 0.8;
}

.weather-filter {
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.weather-filter.is-active {
    background-color: #3273dc;
    color: white;
}

@media (max-width: 768px) {
    .hero-body .box {
        padding: 1.5rem;
    }

    .title.is-1 {
        font-size: 2rem;
    }

    .weather-filter {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

.card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#app-container {
    touch-action: pan-y;
}

.navbar.is-transparent {
    background: transparent;
}

.hero-foot {
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
}

.destination-card {
    background: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}