/**
 * Tour Section Navbar Styles
 * Fixed navbar that appears on scroll for single tour pages
 */

.tour-section-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 50;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.tour-section-navbar.show {
    transform: translateY(0);
}

.tour-section-navbar__container {
    max-width: 1280px;
    margin: 0 auto;
    /*padding: 0 1rem;*/
}

.tour-section-navbar__scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.tour-section-navbar__scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.tour-section-navbar__list {
    display: flex;
    white-space: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-section-navbar__item {
    position: relative;
    flex-shrink: 0;
    color: inherit;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.tour-section-navbar__item:hover {
    background-color: #f0fdf4;
}

.tour-section-navbar__button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    color: #374151;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.tour-section-navbar__item:hover .tour-section-navbar__button {
    color: #166534;
}

.tour-section-navbar__item.active .tour-section-navbar__button {
    color: #166534;
    font-weight: 600;
}

.tour-section-navbar__item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #22c55e;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .tour-section-navbar__button {}
}