/* Location Archive Styles */

.location-archive-wrapper {
    display: flex;
    background-color: transparent;
    color: #F8F9EF;
    min-height: 600px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Sidebar Styles */
.location-sidebar {
    width: 280px;
    background-color: transparent;
    padding: 30px 20px;
    border-right: 1px solid #0F712C;
}

.sidebar-title {
    color: rgba(248, 249, 239, 0.6);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
}

.region-filter {
    list-style: none;
    margin: 0;
    padding: 0;
}

.region-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: rgba(248, 249, 239, 0.6);
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.region-item:hover {
    color: #F8F9EF;
}

.region-item.active {
    color: #F8F9EF;
}

.region-bullet {
    width: 8px;
    height: 8px;
    background-color: transparent;
    margin-right: 12px;
    flex-shrink: 0;
}

.region-item.active .region-bullet {
    background-color: #F78F20;
}

/* Main Content Styles */
.location-main {
    flex: 1;
    padding: 30px 40px;
}

.main-title {
    color: rgba(248, 249, 239, 0.6);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
}

.location-list {
    display: flex;
    flex-direction: column;
}

.location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    background-color: transparent;
    color: #F8F9EF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.3s ease, opacity 0.3s ease;
}

.location-item:hover {
    background-color: #F78F20;
    color: #F8F9EF;
}

.location-item.hidden {
    display: none;
}

.location-name {
    flex: 1;
}

.location-arrow {
    font-size: 28px;
    transition: transform 0.2s ease;
}

.location-item:hover .location-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-archive-wrapper {
        flex-direction: column;
    }

    .location-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #0F712C;
    }

    .region-filter {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .region-item {
        padding: 8px 0;
    }

    .location-main {
        padding: 20px;
    }

    .location-item {
        font-size: 18px;
        padding: 15px 20px;
    }
}