/**
 * Yaremche Tourism Portal — Mobile Sticky Bottom Navigation
 */

.yaremche-mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(7, 23, 18, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(56, 224, 146, 0.2);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 12px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--c-text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
    min-width: 56px;
    transition: var(--transition-smooth);
}

.bottom-nav-item .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--c-accent-leaf);
}

.bottom-nav-item:hover .nav-icon,
.bottom-nav-item.active .nav-icon {
    transform: translateY(-2px);
}

/* Highlight CTA for Book action */
.bottom-nav-item.highlight-cta {
    color: var(--c-wood-glow);
}

.bottom-nav-item.highlight-cta .nav-icon {
    background: linear-gradient(135deg, var(--c-wood-gold) 0%, var(--c-wood-amber) 100%);
    color: #000000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-top: -6px;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.5);
}

@media (max-width: 768px) {
    .yaremche-mobile-bottom-nav {
        display: block;
    }
    body.yaremche-portal-body {
        padding-bottom: 72px; /* space for bottom nav */
    }
}
